Löschen/Deaktivierung

This commit is contained in:
2026-02-01 01:43:12 +01:00
parent f98b3836ce
commit a72d50ced8
4 changed files with 5 additions and 5 deletions

View File

@@ -91,7 +91,7 @@ async function openTemplateManager(item, section) {
const isTemplateSection = () => {
if (section?.is_template) return true;
const slug = (section?.slug || '').toString().toLowerCase();
return slug === 'emailtemplate';
return slug === 'emailtemplate' || slug.includes('template');
};
const fetchTemplateReferences = async () => {