fix: add missing notification status card (#99)

zio/stable
Shinigami 2022-11-25 17:41:52 +01:00 committed by GitHub
parent 2c774eba98
commit c2af403e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ const { notification } = defineProps<{
</div>
<StatusCard :status="notification.status!" p3 />
</template>
<template v-if="notification.type === 'mention' || notification.type === 'poll'">
<template v-if="notification.type === 'mention' || notification.type === 'poll' || notification.type === 'status'">
<StatusCard :status="notification.status!" p3 />
</template>
</div>