@esfaenza/es-table 11.2.60 → 11.2.61
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/esfaenza-es-table.umd.js +2 -2
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +3 -3
- package/fesm2015/esfaenza-es-table.js +2 -2
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -3865,7 +3865,7 @@
|
|
|
3865
3865
|
// In modalità normale invece se le preferenze fanno riferimento a delle colonne che io non ho nella View attuale significa che
|
|
3866
3866
|
// sto facendo riferimento a una versione vecchia dell'es-table, quindi non foccio operazioni
|
|
3867
3867
|
for (i = 0; i < source.length; i++) {
|
|
3868
|
-
if (
|
|
3868
|
+
if (repository.indexOf(source[i]) == -1) {
|
|
3869
3869
|
updatedPrefs = false;
|
|
3870
3870
|
break;
|
|
3871
3871
|
}
|
|
@@ -3916,7 +3916,7 @@
|
|
|
3916
3916
|
// In modalità normale invece se le preferenze fanno riferimento a delle colonne che io non ho nella View attuale significa che
|
|
3917
3917
|
// sto facendo riferimento a una versione vecchia dell'es-table, quindi non foccio operazioni
|
|
3918
3918
|
for (i = 0; i < source.length; i++) {
|
|
3919
|
-
if (
|
|
3919
|
+
if (repository.indexOf(source[i]) == -1) {
|
|
3920
3920
|
updatedPrefs = false;
|
|
3921
3921
|
break;
|
|
3922
3922
|
}
|