fix: Clear search input which navigating to other tab/page (#2061)

This commit is contained in:
Niklas Haug
2021-04-22 10:28:04 +02:00
committed by GitHub
parent 6c7c5064d1
commit 87078e1abf
4 changed files with 33 additions and 6 deletions

View File

@@ -18,9 +18,12 @@ export const getters = {
getHasEndReached: $state => filter => {
return $state.hasEndReached[filter];
},
getCurrentPage: $state => filter => {
getCurrentPageFilter: $state => filter => {
return $state.currentPage[filter];
},
getCurrentPage: $state => {
return $state.currentPage;
},
};
export const actions = {