aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-04-07 22:42:34 +0300
committerHenry Jameson <me@hjkos.com>2021-04-07 22:42:34 +0300
commit61dcdbf99293de8c8b813ccec2833b190d3f97b2 (patch)
treef3c962a2fd8a290e5687135cdf16ec8a794a4076 /src/components/notifications
parent8b96ea93776fd1eb462a7c54822d4f8ad6a9e776 (diff)
migrate to v-slot
Diffstat (limited to 'src/components/notifications')
-rw-r--r--src/components/notifications/notification_filters.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/notifications/notification_filters.vue b/src/components/notifications/notification_filters.vue
index e86a0fcc..ba0e90a0 100644
--- a/src/components/notifications/notification_filters.vue
+++ b/src/components/notifications/notification_filters.vue
@@ -5,9 +5,7 @@
placement="bottom"
:bound-to="{ x: 'container' }"
>
- <template
- v-slot:content
- >
+ <template v-slot:content>
<div class="dropdown-menu">
<button
class="button-default dropdown-item"
@@ -66,7 +64,9 @@
</div>
</template>
<template v-slot:trigger>
- <FAIcon icon="filter" />
+ <button class="button-unstyled">
+ <FAIcon icon="filter" />
+ </button>
</template>
</Popover>
</template>