summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkNotificationSelectWindow.vue
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2026-01-09 12:21:08 +0900
committerGitHub <noreply@github.com>2026-01-09 12:21:08 +0900
commit2a14025c29081bd8080b4dec0823a7625a791950 (patch)
treee02f7fe6363457996efba020ec964bb6e4f041ed /packages/frontend/src/components/MkNotificationSelectWindow.vue
parentBump version to 2026.1.0-alpha.3 (diff)
downloadmisskey-2a14025c29081bd8080b4dec0823a7625a791950.tar.gz
misskey-2a14025c29081bd8080b4dec0823a7625a791950.tar.bz2
misskey-2a14025c29081bd8080b4dec0823a7625a791950.zip
fix(frontend): popupのemit型が正しく利用できるように修正 (#16826)
* fix(frontend): popupのemit型が正しく利用できるように修正 * fix: revert unnecessary code (for testing purpose) * fix lint * fix type errors * fix types * add comment * fix * fix * fix: OverloadToUnionの仕組みを変更 * add comments, clean up * fix lint * fix types * clean up [ci skip] * fix * add comments [ci skip]
Diffstat (limited to 'packages/frontend/src/components/MkNotificationSelectWindow.vue')
-rw-r--r--packages/frontend/src/components/MkNotificationSelectWindow.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNotificationSelectWindow.vue b/packages/frontend/src/components/MkNotificationSelectWindow.vue
index 7205e516d2..5300abd0cf 100644
--- a/packages/frontend/src/components/MkNotificationSelectWindow.vue
+++ b/packages/frontend/src/components/MkNotificationSelectWindow.vue
@@ -42,7 +42,7 @@ import { i18n } from '@/i18n.js';
type TypesMap = Record<typeof notificationTypes[number], Ref<boolean>>;
const emit = defineEmits<{
- (ev: 'done', v: { excludeTypes: string[] }): void,
+ (ev: 'done', v: { excludeTypes: typeof notificationTypes[number][] }): void,
(ev: 'closed'): void,
}>();