mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
fix: add user id to page key (#241)
This commit is contained in:
parent
6389cbfe38
commit
b997feb6b3
1 changed files with 1 additions and 1 deletions
2
app.vue
2
app.vue
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue