Skip to content

Commit e816c60

Browse files
committed
fix: Writer empty state when value gets changed
Fixes #7246
1 parent 67221ab commit e816c60

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

panel/src/components/Forms/Input/WriterInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ export default {
154154
if (newValue !== oldValue && newValue !== this.html) {
155155
this.html = newValue;
156156
this.editor.setContent(this.html);
157+
this.isEmpty = this.editor.isEmpty();
157158
}
158159
}
159160
},

0 commit comments

Comments
 (0)