Skip to content

Commit

Permalink
setting loadData default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Harding committed Sep 16, 2024
1 parent 87efacc commit 9d5ddaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export function getFilterActions() {
* @param {Boolean} triggerLoadData=true optional variable, if true will trigger a loadData action
* @memberof module:pageStore
*/
setFilter(key, payload, triggerLoadData = true) {
setFilter(key, payload, triggerLoadData = false) {
this._validFilterKey(key);
this[`set${capitalize(key)}Filter`](payload, triggerLoadData);
},
Expand Down

0 comments on commit 9d5ddaf

Please sign in to comment.