property name fixed. see #553

This commit is contained in:
mic 2025-12-26 22:56:36 +01:00
parent 01df96d0c7
commit c9b0e39433

View file

@ -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,
}; };
} }