diff --git a/src/views/namespaces/ListNamespaces.vue b/src/views/namespaces/ListNamespaces.vue index 3dffb6a46..922757ff9 100644 --- a/src/views/namespaces/ListNamespaces.vue +++ b/src/views/namespaces/ListNamespaces.vue @@ -7,7 +7,7 @@ Create saved filter - + Show Archived @@ -99,6 +99,7 @@ export default { } }, created() { + this.showArchived = localStorage.getItem('showArchived') ?? false this.loadBackgroundsForLists() }, mounted() { @@ -136,6 +137,9 @@ export default { this.$store.dispatch('lists/toggleListFavorite', list) .catch(e => this.error(e, this)) }, + saveShowArchivedState() { + localStorage.setItem('showArchived', this.showArchived) + }, }, }