fix: add user id to page key (#241)

pull/253/head
Daniel Roe 2022-11-30 09:41:14 +00:00 zatwierdzone przez GitHub
rodzic 6389cbfe38
commit b997feb6b3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -3,7 +3,7 @@ setupPageHeader()
await setupI18n()
// We want to trigger rerendering the page when account changes
const key = computed(() => useMasto().instances.config.url || 'default')
const key = computed(() => currentServer.value + ':' + (currentUser.value?.account.id || ''))
</script>
<template>