Skip to content

Commit

Permalink
Fix [UI] When showing lists of jobs and workflows, time frame of "any…
Browse files Browse the repository at this point in the history
… time" should not be considered a filter (#2473)
  • Loading branch information
Taras-Hlukhovetskyi authored May 22, 2024
1 parent 38d78ef commit 95e1f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/getNoDataMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const getChangedFiltersList = (filters, filtersStore, filtersStoreKey) => {
((type === NAME_FILTER || type === LABELS_FILTER || type === ENTITIES_FILTER) &&
filtersStore[type].length > 0) ||
(type === STATUS_FILTER && filtersStore.state !== FILTER_ALL_ITEMS) ||
type === DATE_RANGE_TIME_FILTER ||
(type === DATE_RANGE_TIME_FILTER && !isEqual(filtersStore.dates.value, DATE_FILTER_ANY_TIME)) ||
(type === ITERATIONS_FILTER && isIterChanged) ||
(type === SHOW_UNTAGGED_FILTER && filtersStore.showUntagged === SHOW_UNTAGGED_ITEMS) ||
(type === GROUP_BY_FILTER && filtersStore.groupBy !== GROUP_BY_NONE)
Expand Down

0 comments on commit 95e1f12

Please sign in to comment.