fix: using useSelfAccount

fix cfbb93045c
11fc2572d5
This commit is contained in:
三咲智子 Kevin Deng 2023-01-14 21:04:44 +08:00
parent b3ff8a457d
commit a6a825e553
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ const { account, command, context, ...props } = defineProps<{
command?: boolean
}>()
const isSelf = $computed(() => currentUser.value?.account.id === account.id)
const isSelf = $(useSelfAccount(() => account))
const enable = $computed(() => !isSelf && currentUser.value)
const relationship = $computed(() => props.relationship || useRelationship(account).value)

View file

@ -75,7 +75,7 @@ watchEffect(() => {
iconFields.value = icons
})
const isSelf = $computed(() => currentUser.value?.account.id === account.id)
const isSelf = $(useSelfAccount(() => account))
</script>
<template>

View file

@ -7,7 +7,7 @@ const { account } = defineProps<{
}>()
let relationship = $(useRelationship(account))
const isSelf = $computed(() => currentUser.value?.account.id === account.id)
const isSelf = $(useSelfAccount(() => account))
const masto = useMasto()
const toggleMute = async () => {