diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-05-22 16:25:22 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-05-22 16:25:22 +0000 |
| commit | 3287ce94539973018fac7cf4bed2f2c4643f838e (patch) | |
| tree | 6fb4fcdcce28b95b704bc9ae205f723dbeb5c23e /src/components/notifications | |
| parent | c93adf2e9a8ac6bfbe1e6cebde1d189475b3cb58 (diff) | |
| parent | 6e0ceda968625259bafea72cf90446b610f0b913 (diff) | |
Merge branch 'from/develop/tusooa/poll-notif' into 'develop'
Poll-end notifications
See merge request pleroma/pleroma-fe!1524
Diffstat (limited to 'src/components/notifications')
| -rw-r--r-- | src/components/notifications/notification_filters.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/notifications/notification_filters.vue b/src/components/notifications/notification_filters.vue index ba0e90a0..0fe6713f 100644 --- a/src/components/notifications/notification_filters.vue +++ b/src/components/notifications/notification_filters.vue @@ -61,6 +61,15 @@ :class="{ 'menu-checkbox-checked': filters.moves }" />{{ $t('settings.notification_visibility_moves') }} </button> + <button + class="button-default dropdown-item" + @click="toggleNotificationFilter('polls')" + > + <span + class="menu-checkbox" + :class="{ 'menu-checkbox-checked': filters.polls }" + />{{ $t('settings.notification_visibility_polls') }} + </button> </div> </template> <template v-slot:trigger> |
