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:
Bogdan Abaev 2024-02-01 14:23:36 -05:00 committed by Dan Stillman
parent 15d5dcaaee
commit e69ce9b86c

View file

@ -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;