diff --git a/frontend/src/App.vue b/frontend/src/App.vue index a37f38b..e6e06a4 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -45,6 +45,7 @@ const password = ref('') const folders = ref([]) const lists = ref([]) const archivedLists = ref([]) +const archivedListsLoaded = ref(false) const archivedListsExpanded = ref(false) const archivedListAction = ref(null) const archivedListsToggle = ref(null) @@ -1360,6 +1361,7 @@ async function deleteFolder(item: FolderItem) { } async function loadArchivedLists() { try { archivedLists.value = await api('/lists?archived=true') } catch { archivedLists.value = [] } + archivedListsLoaded.value = true } async function restoreList(item: TaskList) { archivedListAction.value = null @@ -1756,7 +1758,7 @@ onUnmounted(() => {
- +
{{list.name}}
@@ -1803,7 +1805,7 @@ onUnmounted(() => {
-

{{ activeName }}

+

{{ activeName }}