diff --git a/pages/addtags/mzta-add-tags.js b/pages/addtags/mzta-add-tags.js index afea20b7..246f945a 100644 --- a/pages/addtags/mzta-add-tags.js +++ b/pages/addtags/mzta-add-tags.js @@ -79,7 +79,7 @@ document.addEventListener('DOMContentLoaded', async () => { updateAdditionalPromptStatements(); - autocompleteSuggestions = (await getPlaceholders(true)).filter(p => !(p.id === 'selected_text' || p.id === 'additional_text')).map(p => ({command: '{%'+p.id+'%}', type: p.type})); + autocompleteSuggestions = (await getPlaceholders(true)).filter(p => !(p.id === 'additional_text')).map(p => ({command: '{%'+p.id+'%}', type: p.type})); textareaAutocomplete(addtags_textarea, autocompleteSuggestions, 1); // type_value = 1, only when reading an email let excl_list_textarea = document.getElementById('addtags_excl_list');