diff --git a/src/pinia/stores/tags-view.ts b/src/pinia/stores/tags-view.ts index 6e51d246..52c2590c 100644 --- a/src/pinia/stores/tags-view.ts +++ b/src/pinia/stores/tags-view.ts @@ -30,6 +30,7 @@ export const useTagsViewStore = defineStore("tags-view", () => { } const addCachedView = (view: TagView) => { + if (!cacheTagsView) return if (typeof view.name !== "string") return if (cachedViews.value.includes(view.name)) return if (view.meta?.keepAlive) {