@one-paragon/angular-utilities 2.6.3 → 2.6.4

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.
@@ -5556,7 +5556,7 @@ const updateFilterState = (filterInfos, predicates) => {
5556
5556
  if (filterInfos.timestamp > predicates.timestamp && !!filterInfos.value.onlyAddedFilters) {
5557
5557
  filtersState.onlyAddedFilters = infos.onlyAddedFilters;
5558
5558
  }
5559
- else {
5559
+ else if (predicates.timestamp > filterInfos.timestamp && !!predicates.value.onlyAddedFilters) {
5560
5560
  filtersState.onlyAddedFilters = predicates.value.onlyAddedFilters;
5561
5561
  }
5562
5562
  return filtersState;