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:
abaevbog 2024-06-30 23:24:01 -07:00 committed by GitHub
parent 29fa2f7073
commit 7dc68209a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,6 +51,7 @@
this._draggedCreator = false;
this._selectField = null;
this._selectFieldSelection = null;
this._addCreatorRow = false;
}
get content() {