diff options
Diffstat (limited to 'modern/src/settings/NotificationPage.js')
-rw-r--r-- | modern/src/settings/NotificationPage.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/settings/NotificationPage.js b/modern/src/settings/NotificationPage.js index 0c713a75..a98330c2 100644 --- a/modern/src/settings/NotificationPage.js +++ b/modern/src/settings/NotificationPage.js @@ -61,7 +61,7 @@ const NotificationPage = () => { keyGetter={(it) => it.type} titleGetter={(it) => t(prefixString('event', it.type))} label={t('sharedType')} - variant="filled" + /> <SelectField multiple @@ -72,7 +72,7 @@ const NotificationPage = () => { keyGetter={(it) => it.type} titleGetter={(it) => t(prefixString('notificator', it.type))} label={t('notificationNotificators')} - variant="filled" + /> {(!item.type || item.type === 'alarm') && ( <SelectField @@ -83,7 +83,7 @@ const NotificationPage = () => { data={alarms} keyGetter={(it) => it.key} label={t('sharedAlarms')} - variant="filled" + /> )} <FormControlLabel |