Skip to content

Commit

Permalink
feat: align notification subject left
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Jan 20, 2025
1 parent e372fcc commit abbfc71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<Popover ref="notificationsPanel">
<Accordion v-if="reverseNotifications.length" class="box-border w-96 max-w-[calc(100vw-16px)]" expand-icon="pi pi-chevron-right">
<AccordionPanel v-for="notification in reverseNotifications" :key="notification.id" :value="notification.id" @click="markNotificationAsRead(notification.id)">
<AccordionHeader :class="{ '!font-normal': notification.status !== 'inbox' }">{{ notification.subject }}</AccordionHeader>
<AccordionHeader class="text-left" :class="{ '!font-normal': notification.status !== 'inbox' }">{{ notification.subject }}</AccordionHeader>
<AccordionContent>
<!-- eslint-disable-next-line vue/no-v-html -->
<span v-if="notification.message" class="notification" v-html="notification.message"/>
Expand Down

0 comments on commit abbfc71

Please sign in to comment.