ui: navbar for status detail

This commit is contained in:
Anthony Fu 2022-11-24 16:07:51 +08:00
parent 83c0fafbec
commit 9485830da2

View file

@ -10,6 +10,7 @@ const { data: context } = useAsyncData(`context:${id}`, () => masto.statuses.fet
</script>
<template>
<MainContent>
<template v-if="status">
<template v-if="context">
<template v-for="comment of context?.ancestors" :key="comment.id">
@ -36,4 +37,5 @@ const { data: context } = useAsyncData(`context:${id}`, () => masto.statuses.fet
<CommonNotFound v-else>
Status not found
</CommonNotFound>
</MainContent>
</template>