aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:15:44 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:15:44 +0000
commit0ca0e642a43a75f8e903db7361158ad32b84ecc4 (patch)
treefd96ac1da4e8b463cc3094dfdf4c88103179c673 /src/components/notifications
parent4e96af044224dc10b8cc4eb270e025f1b8a1d29a (diff)
parent80220c1b07436098a8d87ffc0fc49fadc79ac9a4 (diff)
Merge branch 'v-slot-upgrade' into 'develop'
Change old slot syntax (removed in vue3) to new one See merge request pleroma/pleroma-fe!1379
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>