From ee2bb950b18c3dd716b6e83c7a2ef58d1b52f7c3 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 2 Nov 2020 10:30:28 +0100 Subject: [PATCH] Fix notification settings not displaying as saved Signed-off-by: Thomas Citharel --- js/src/views/Settings/Notifications.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/js/src/views/Settings/Notifications.vue b/js/src/views/Settings/Notifications.vue index f020bf16d..829c6508a 100644 --- a/js/src/views/Settings/Notifications.vue +++ b/js/src/views/Settings/Notifications.vue @@ -22,10 +22,10 @@ "Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc." ) }} -

- {{ $t("Other notification options:") }} -

+

+ {{ $t("Other notification options:") }} +

{{ $t("Notification on the day of the event") }} @@ -149,6 +149,7 @@ export default class Notifications extends Vue { await this.$apollo.mutate<{ setUserSettings: string }>({ mutation: SET_USER_SETTINGS, variables, + refetchQueries: [{ query: USER_SETTINGS }], }); } }