blob: bd69e7689281f3b80d8b557996c976b0e28fef71 (
plain)
1
2
3
4
5
6
7
8
|
export default [
{
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}',
weight: 1,
},
{ value: '{{person.firstName}} {{person.lastName}}', weight: 5 },
{ value: '{{person.lastName}} {{person.firstName}}', weight: 5 },
];
|