Save Abstract edits when switching items
Since itemPane.js sets mode before item, the editable-text's value would get reset before save() ran. Not touching the header since we're replacing that with an item-box field (which does not have this bug) soon anyway. Fixes #3679
This commit is contained in:
parent
0aea17581e
commit
6a39980a97
1 changed files with 4 additions and 0 deletions
|
@ -62,6 +62,10 @@
|
|||
}
|
||||
|
||||
set mode(mode) {
|
||||
if (this._mode === mode) {
|
||||
return;
|
||||
}
|
||||
this.blurOpenField();
|
||||
this._mode = mode;
|
||||
this.render();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue