diff options
| author | Henry Jameson <me@hjkos.com> | 2022-05-22 21:50:30 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-05-22 21:50:30 +0300 |
| commit | c3c120e91da987ecb54c7d743b6791f904b56f4d (patch) | |
| tree | cc1c31bc0a4911cbdbbad4408c215c9de9c514ef | |
| parent | 1feff4dcc7d416815b5967d330c2e02573fec854 (diff) | |
fix?
| -rw-r--r-- | src/components/notifications/notifications.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index d5b2d1d5..794ef51d 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -30,7 +30,7 @@ v-for="notification in notificationsToDisplay" :key="notification.id" class="notification" - :class="{"unseen": !minimalMode && !notification.seen}" + :class="{unseen: !minimalMode && !notification.seen}" > <div class="notification-overlay" /> <notification :notification="notification" /> |
