property name fixed. see #553
This commit is contained in:
parent
01df96d0c7
commit
c9b0e39433
1 changed files with 4 additions and 2 deletions
|
|
@ -340,9 +340,11 @@ export async function prepareCustomDataPHsForImport(placeholders){
|
|||
}
|
||||
|
||||
export function mapPlaceholderToSuggestion(p) {
|
||||
// console.log(">>>>>>>>>> mapPlaceholderToSuggestion p" + JSON.stringify(p));
|
||||
return {
|
||||
command: '{%' + p.id + '%}',
|
||||
type: p.type
|
||||
command: '{%' + p.id + (p.is_dynamic == 1 ? ':' : '') + '%}',
|
||||
type: p.type,
|
||||
is_dynamic: p.is_dynamic,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue