pdf template style null fix

This commit is contained in:
Yurii
2026-02-15 18:02:52 +02:00
parent 9e1e3396d0
commit a682394e53

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;
}