Change "None" to "Off" in notification options (#9539)
This commit is contained in:
parent
06f69abad9
commit
8ebdcab7d9
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ export const RoomNotificationContextMenu = ({ room, onFinished, ...props }: IPro
|
||||||
/>;
|
/>;
|
||||||
|
|
||||||
const muteOption: JSX.Element = <IconizedContextMenuRadio
|
const muteOption: JSX.Element = <IconizedContextMenuRadio
|
||||||
label={_t("None")}
|
label={_t("Off")}
|
||||||
active={notificationState === RoomNotifState.Mute}
|
active={notificationState === RoomNotifState.Mute}
|
||||||
iconClassName="mx_RoomNotificationContextMenu_iconBellCrossed"
|
iconClassName="mx_RoomNotificationContextMenu_iconBellCrossed"
|
||||||
onClick={wrapHandler(() => setNotificationState(RoomNotifState.Mute))}
|
onClick={wrapHandler(() => setNotificationState(RoomNotifState.Mute))}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue