WIP: feat: route modals everywhere #2735

Closed
dpschen wants to merge 15 commits from dpschen/frontend:feature/route-modals-everywhere into main
Showing only changes of commit 5f4e93b7f4 - Show all commits

View File

@ -28,7 +28,10 @@ const listStore = useListStore()
const route = useRoute() const route = useRoute()
const list = computed(() => listStore.getListById(route.params.listId)) const list = computed(() => listStore.getListById(route.params.listId))
useTitle(() => t('list.archive.title', {list: list.value.title})) useTitle(() => list.value
? t('list.archive.title', {list: list.value.title})
: undefined,
)
async function archiveList(onClose: () => void) { async function archiveList(onClose: () => void) {
try { try {