Skip to content

Commit

Permalink
Prevent double record list fetch on re-drilldown
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Mar 28, 2024
1 parent cf8de0f commit 5a4f934
Showing 1 changed file with 1 addition and 5 deletions.
Expand Up @@ -1804,11 +1804,7 @@ export default {
},
setDrillDownFilter (drillDownFilter) {
if (this.activeFilters.includes(this.$t('recordList.drillDown.filter.label'))) {
this.removeFilter(this.activeFilters.indexOf(this.$t('recordList.drillDown.filter.label')))
}
if (drillDownFilter) {
if (!this.drillDownFilter) {
this.activeFilters.push(this.$t('recordList.drillDown.filter.label'))
}
Expand Down

0 comments on commit 5a4f934

Please sign in to comment.