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) {
|
export function mapPlaceholderToSuggestion(p) {
|
||||||
|
// console.log(">>>>>>>>>> mapPlaceholderToSuggestion p" + JSON.stringify(p));
|
||||||
return {
|
return {
|
||||||
command: '{%' + p.id + '%}',
|
command: '{%' + p.id + (p.is_dynamic == 1 ? ':' : '') + '%}',
|
||||||
type: p.type
|
type: p.type,
|
||||||
|
is_dynamic: p.is_dynamic,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue