fix to unwanted empty creator row in itemBox (#4275)
this._addCreatorRow needs to be properly initialized to false (as opposed to being undefined) because 'false' is the value we check against to decide if an empty row should be added and focused after rendering. Fixes: #4268
This commit is contained in:
parent
29fa2f7073
commit
7dc68209a5
1 changed files with 1 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
|||
this._draggedCreator = false;
|
||||
this._selectField = null;
|
||||
this._selectFieldSelection = null;
|
||||
this._addCreatorRow = false;
|
||||
}
|
||||
|
||||
get content() {
|
||||
|
|
Loading…
Reference in a new issue