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