fix: make form dirty if doctype form/customize form/form builder is dirty
This commit is contained in:
parent
6d912c934b
commit
39f2ba28d9
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class FormBuilder {
|
|||
|
||||
watch_changes() {
|
||||
watchEffect(() => {
|
||||
if (this.store.dirty) {
|
||||
if (this.store.dirty || this.frm.is_dirty()) {
|
||||
this.frm.dirty();
|
||||
} else {
|
||||
this.page.clear_indicator();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue