aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification/notification.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/notification/notification.vue')
-rw-r--r--src/components/notification/notification.vue8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index 4d801c5e..a8eceab0 100644
--- a/src/components/notification/notification.vue
+++ b/src/components/notification/notification.vue
@@ -6,6 +6,7 @@
class="Notification"
:compact="true"
:statusoid="notification.status"
+ @interacted="interacted"
/>
</article>
<article v-else>
@@ -125,7 +126,8 @@
v-if="notification.emoji_url"
class="emoji-reaction-emoji emoji-reaction-emoji-image"
:src="notification.emoji_url"
- :name="notification.emoji"
+ :alt="notification.emoji"
+ :title="notification.emoji"
>
<span
v-else
@@ -162,8 +164,8 @@
</router-link>
<button
class="button-unstyled expand-icon"
- :aria-expanded="statusExpanded"
:title="$t('tool_tip.toggle_expand')"
+ :aria-expanded="statusExpanded"
@click.prevent="toggleStatusExpanded"
>
<FAIcon
@@ -247,7 +249,7 @@
<StatusContent
:class="{ faint: !statusExpanded }"
:compact="!statusExpanded"
- :status="notification.action"
+ :status="notification.status"
/>
</template>
</div>