From becc4d2e540a07943d55a476c2e25cc22911162a Mon Sep 17 00:00:00 2001 From: tamaina Date: Thu, 23 Feb 2023 20:46:14 +0900 Subject: fix: i/notificationsで古い通知タイプを許容するなど、古い通知タイプの清算 (#10042) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * wip * fix * create migration * oops * fix front const * changelog * fix type * fix * wip * Revert "wip" This reverts commit 6cdb3600e280be3550b8b6353b2c7930f7b31438. * enumのこす * fix --------- Co-authored-by: syuilo --- .../src/components/MkNotificationSettingWindow.vue | 30 ++++++++++------------ 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'packages/frontend/src/components/MkNotificationSettingWindow.vue') diff --git a/packages/frontend/src/components/MkNotificationSettingWindow.vue b/packages/frontend/src/components/MkNotificationSettingWindow.vue index 2d8d30e337..f6d0e5681d 100644 --- a/packages/frontend/src/components/MkNotificationSettingWindow.vue +++ b/packages/frontend/src/components/MkNotificationSettingWindow.vue @@ -6,7 +6,7 @@ :with-ok-button="true" :ok-button-disabled="false" @ok="ok()" - @close="dialog.close()" + @close="dialog?.close()" @closed="emit('closed')" > @@ -25,7 +25,7 @@ {{ i18n.ts.disableAll }} {{ i18n.ts.enableAll }} - {{ i18n.t(`_notification._types.${ntype}`) }} + {{ i18n.t(`_notification._types.${ntype}`) }} @@ -33,14 +33,16 @@ -- cgit v1.2.3-freya