diff options
| author | tusooa <tusooa@kazv.moe> | 2022-11-08 00:43:33 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2022-11-08 00:43:33 -0500 |
| commit | 17aa503106f129e391f8478ade6821f09ef7494a (patch) | |
| tree | 199f85dfe05f60d397014c2e2d4671ca37f397fe /src/components/notifications/notifications.vue | |
| parent | a34bea75a808de9841f616896ebb630972475707 (diff) | |
Make notification panel a list of articles
Diffstat (limited to 'src/components/notifications/notifications.vue')
| -rw-r--r-- | src/components/notifications/notifications.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index 7ed419d1..02a87fcc 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -50,10 +50,14 @@ </button> <NotificationFilters class="rightside-button" /> </div> - <div class="panel-body"> + <div + class="panel-body" + role="list" + > <div v-for="notification in notificationsToDisplay" :key="notification.id" + role="listitem" class="notification" :class="{unseen: !minimalMode && !notification.seen}" > |
