feat: don't fetch status when profile undiscoverable

zio/stable
三咲智子 2022-12-01 22:09:11 +08:00
parent 3485208929
commit 4c589a4033
No known key found for this signature in database
GPG Key ID: 69992F2250DFD93E
1 changed files with 4 additions and 1 deletions

View File

@ -43,10 +43,13 @@ const paginator = $computed(() => tabs.find(t => t.name === tab)!.paginator)
</script>
<template>
<div>
<div v-if="account!.discoverable">
<CommonTabs v-model="tab" :options="tabs" command />
<KeepAlive>
<TimelinePaginator :key="tab" :paginator="paginator" />
</KeepAlive>
</div>
<div v-else h-30 flex="~ center" text-gray>
Profile unavailable
</div>
</template>