We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9540d49 commit 3895fbdCopy full SHA for 3895fbd
frontend/src/components/Editor.vue
@@ -318,6 +318,10 @@ export default {
318
if (this.self.contentType === 'visual') {
319
this.visualTemplateId = this.validTemplates[0]?.id || null;
320
} else {
321
+ if (this.templateId) {
322
+ return;
323
+ }
324
+
325
const defaultTemplate = this.validTemplates.find((t) => t.isDefault === true);
326
this.templateId = defaultTemplate?.id || this.validTemplates[0]?.id || null;
327
}
0 commit comments