Merge branch 'fix'

This commit is contained in:
Yurii
2026-02-16 09:44:06 +02:00
4 changed files with 13 additions and 17 deletions
+1 -1
View File
@@ -179,7 +179,7 @@ class TemplateStyleFieldView extends TextFieldView {
fetch() {
const data = {};
data[this.name] = this.editor.getValue();
data[this.name] = this.editor.getValue() || null;
return data;
}