From b31043b5eb5c5a46f2b59e557b6527eee7e8dff7 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 19 Jul 2021 10:15:42 -0600 Subject: [PATCH] Revert order of notification setting radios Follow-on from https://github.com/matrix-org/matrix-react-sdk/pull/6352 Fixes https://github.com/vector-im/element-web/issues/18048 --- src/components/views/settings/Notifications.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/settings/Notifications.tsx b/src/components/views/settings/Notifications.tsx index a488145153..766ba2c9c0 100644 --- a/src/components/views/settings/Notifications.tsx +++ b/src/components/views/settings/Notifications.tsx @@ -569,8 +569,8 @@ export default class Notifications extends React.PureComponent { const rows = this.state.vectorPushRules[category].map(r => { r.description } - { makeRadio(r, VectorState.On) } { makeRadio(r, VectorState.Off) } + { makeRadio(r, VectorState.On) } { makeRadio(r, VectorState.Loud) } ); @@ -594,8 +594,8 @@ export default class Notifications extends React.PureComponent { { sectionName } - { _t("On") } { _t("Off") } + { _t("On") } { _t("Noisy") }