@sumaris-net/ngx-components 0.27.19 → 0.27.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/sumaris-net.ngx-components.umd.js +2 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/editor.class.js +3 -2
- package/fesm2015/sumaris-net.ngx-components.js +2 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -25952,7 +25952,8 @@
|
|
|
25952
25952
|
value = 0;
|
|
25953
25953
|
}
|
|
25954
25954
|
else if (value > this.tabCount - 1) {
|
|
25955
|
-
value
|
|
25955
|
+
console.warn("[tab-editor] Invalid tab index " + value + ". Max value is " + (this.tabCount - 1));
|
|
25956
|
+
value = this._selectedTabIndex;
|
|
25956
25957
|
}
|
|
25957
25958
|
this._selectedTabIndex = value;
|
|
25958
25959
|
this.selectedTabIndexChange.next(value);
|