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) } /> )) } -
+ )} -
+ ); } }