@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.
@@ -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 (!repository.indexOf(source[i])) {
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 (!repository.indexOf(source[i])) {
3919
+ if (repository.indexOf(source[i]) == -1) {
3920
3920
  updatedPrefs = false;
3921
3921
  break;
3922
3922
  }