forked from FoundKeyGang/FoundKey
client: fix notification settings displaying empty
The default value was chosen incorrectly in commit
ab84457c0e
. To be backward compatible
the default value has to include all available notification types.
This commit is contained in:
parent
a79506d895
commit
c5f07ef66c
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ const props = withDefaults(defineProps<{
|
|||
message?: string,
|
||||
}>(), {
|
||||
includingTypes: () => [],
|
||||
notificationTypes: () => [],
|
||||
notificationTypes: foundkey.notificationTypes,
|
||||
showGlobalToggle: true,
|
||||
message: i18n.ts.notificationSettingDesc,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue