diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-10-06 08:55:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-06 08:55:22 +0900 |
| commit | d03cf4d7f9e09df6cbaea3bc8a44b52ce3777ce3 (patch) | |
| tree | 7131b99550537fb5e4fb01779ee94e7df92aa49e /packages/frontend | |
| parent | fix(frontend): 画面左のナビゲーションバーでウィジェット... (diff) | |
| download | misskey-d03cf4d7f9e09df6cbaea3bc8a44b52ce3777ce3.tar.gz misskey-d03cf4d7f9e09df6cbaea3bc8a44b52ce3777ce3.tar.bz2 misskey-d03cf4d7f9e09df6cbaea3bc8a44b52ce3777ce3.zip | |
fix(frontend): 通知の設定画面で予約投稿関連の翻訳が当たっていない問題の修正 (#16603)
* fix(frontend): 予約投稿通知の設定画面に不足している翻訳を追加
* fix(misskey-js): 廃止された通知が定義に残っているのを修正
* fix(frontend): 予約投稿の完了/失敗通知はオンオフのみ
Diffstat (limited to 'packages/frontend')
| -rw-r--r-- | packages/frontend/src/pages/settings/notifications.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/settings/notifications.vue b/packages/frontend/src/pages/settings/notifications.vue index 64d61c0bee..2802d3263e 100644 --- a/packages/frontend/src/pages/settings/notifications.vue +++ b/packages/frontend/src/pages/settings/notifications.vue @@ -85,7 +85,7 @@ const $i = ensureSignin(); const nonConfigurableNotificationTypes = ['note', 'roleAssigned', 'followRequestAccepted', 'test', 'exportCompleted'] satisfies (typeof notificationTypes[number])[] as string[]; -const onlyOnOrOffNotificationTypes = ['app', 'achievementEarned', 'login', 'createToken'] satisfies (typeof notificationTypes[number])[] as string[]; +const onlyOnOrOffNotificationTypes = ['app', 'achievementEarned', 'login', 'createToken', 'scheduledNotePosted', 'scheduledNotePostFailed'] satisfies (typeof notificationTypes[number])[] as string[]; const allowButton = useTemplateRef('allowButton'); const pushRegistrationInServer = computed(() => allowButton.value?.pushRegistrationInServer); |