@one-paragon/angular-utilities 2.9.4 → 2.9.5

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.
@@ -2185,7 +2185,7 @@ class NotPersistedTableSettings {
2185
2185
  if (tableSettings.tableSettings?.paginatorSettings) {
2186
2186
  const currPag = (tableSettings.tableSettings?.paginatorSettings && newNpts.paginatorSettings) ?
2187
2187
  merge(tableSettings.tableSettings?.paginatorSettings, newNpts.paginatorSettings)
2188
- : (newNpts.paginatorSettings ?? new PaginatorOptions());
2188
+ : (tableSettings.tableSettings?.paginatorSettings ?? newNpts.paginatorSettings ?? new PaginatorOptions());
2189
2189
  currPag.includeAllInOptions = (currPag.defaultAll && currPag.includeAllInOptions !== false) || currPag.includeAllInOptions;
2190
2190
  newNpts.paginatorSettings = { ...new PaginatorOptions(), ...currPag };
2191
2191
  }