fix: add missing notification status card (#99)

This commit is contained in:
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

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>