From c9b0e394339d6f1237edbcc130b080a4c891e5cf Mon Sep 17 00:00:00 2001 From: mic Date: Fri, 26 Dec 2025 22:56:36 +0100 Subject: [PATCH] property name fixed. see #553 --- js/mzta-placeholders.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/mzta-placeholders.js b/js/mzta-placeholders.js index 6c276fad..27eeb858 100644 --- a/js/mzta-placeholders.js +++ b/js/mzta-placeholders.js @@ -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, }; }