From a51e97f3189c2ade6b79df181d692453cf55981b Mon Sep 17 00:00:00 2001 From: Joshua Irmer Date: Wed, 12 Mar 2025 14:06:55 +0100 Subject: [PATCH] fix(settings): notification tab restructure Signed-off-by: Joshua Irmer --- .../components/web/NotificationsTab.tsx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/react/features/settings/components/web/NotificationsTab.tsx b/react/features/settings/components/web/NotificationsTab.tsx index a4b829035f..2456539356 100644 --- a/react/features/settings/components/web/NotificationsTab.tsx +++ b/react/features/settings/components/web/NotificationsTab.tsx @@ -190,14 +190,14 @@ class NotificationsTab extends AbstractDialogTab { const classes = withStyles.getClasses(this.props); return ( -
{showSoundsSettings && ( -
-

+
+ {t('settings.playSounds')} -

+ {enableReactions && { label = { t('settings.participantKnocking') } name = 'soundsParticipantKnocking' onChange = { this._onChange } /> -
+ )} {showNotificationsSettings && ( -
-

+
+ {t('notify.displayNotifications')} -

+ { Object.keys(enabledNotifications).map(key => ( { onChange = { e => this._onEnabledNotificationsChanged(e, key) } /> )) } -
+ )} -
+ ); } }