Skip to content

Commit c360254

Browse files
committed
These keys are not stored under .filters
1 parent c3b3dff commit c360254

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/stores/AppStore.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ export const useAppStore = defineStore('appStore', {
180180
for (const [key, value] of Object.entries(this[PAGE_NAMES.SEARCH].filters)) {
181181
this[parentKey].filters[key] = value
182182
}
183-
this[parentKey].filters.colorCodeVariants = this[PAGE_NAMES.SEARCH].filters.colorCodeVariants
184-
this[parentKey].filters.showEnsIDs = this[PAGE_NAMES.SEARCH].filters.showEnsIDs
185-
this[parentKey].filters.showEffects = this[PAGE_NAMES.SEARCH].filters.showEffects
186-
this[parentKey].filters.showOrphans = this[PAGE_NAMES.SEARCH].filters.showOrphans
183+
this[parentKey].colorCodeVariants = this[PAGE_NAMES.SEARCH].colorCodeVariants
184+
this[parentKey].showEnsIDs = this[PAGE_NAMES.SEARCH].showEnsIDs
185+
this[parentKey].showEffects = this[PAGE_NAMES.SEARCH].showEffects
186+
this[parentKey].showOrphans = this[PAGE_NAMES.SEARCH].showOrphans
187187
this[parentKey].filters.itemsPerPage = this[PAGE_NAMES.SEARCH].filters.itemsPerPage
188188
this[parentKey].filters.pageNum = 1
189189
},

0 commit comments

Comments
 (0)