Skip to content

Commit

Permalink
fix: change field name
Browse files Browse the repository at this point in the history
  • Loading branch information
lauramargar committed Oct 11, 2023
1 parent 732b820 commit 2830d94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const updateHistoryQueriesWithSearchResponse: HistoryQueriesXStoreModule[
newHistoryQueries[indexOfHistoryQuery] = {
...historyQuery,
totalResults: searchResponse.totalResults,
filters
selectedFilters: filters
};
return dispatch('setHistoryQueries', newHistoryQueries);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const historyQueriesXStoreModule: HistoryQueriesXStoreModule = {
state.isEnabled = isEnabled;
},
setSearchSelectedFilters(state, filters) {
state.historyQueries[0].filters = filters;
state.historyQueries[0].selectedFilters = filters;
}
},
actions: {
Expand Down

0 comments on commit 2830d94

Please sign in to comment.