avoid ztabindex overlap when new creator is added
Increated the ztabindex offset for non-creator rows, so that when a new creator is added but not saved yet, there is no two elements with the same ztabindex which would break tab-based navigation Fixes: #3666
This commit is contained in:
parent
15d5dcaaee
commit
e69ce9b86c
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
this._editableFields = [];
|
||||
this._fieldAlternatives = {};
|
||||
this._fieldOrder = [];
|
||||
this._tabIndexMinCreators = 10;
|
||||
this._tabIndexMinCreators = 100;
|
||||
this._tabIndexMaxFields = 0;
|
||||
this._initialVisibleCreators = 5;
|
||||
this._draggedCreator = false;
|
||||
|
|
Loading…
Reference in a new issue