Skip to content

Commit

Permalink
Fix error when removing filters
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Sep 24, 2024
1 parent faadc16 commit bb13c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/data-list/Filters.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export default {
},
removeFieldFilter(handle) {
let fields = clone(this.activeFilters.fields);
let fields = clone(this.activeFilters['runway-fields']);
delete fields[handle];
Expand Down

0 comments on commit bb13c44

Please sign in to comment.