ui: navbar for status detail

pull/43/head
Anthony Fu 2022-11-24 16:07:51 +08:00
rodzic 83c0fafbec
commit 9485830da2
1 zmienionych plików z 25 dodań i 23 usunięć

Wyświetl plik

@ -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>