Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit b31043b

Browse files
committed
Revert order of notification setting radios
Follow-on from #6352 Fixes element-hq/element-web#18048
1 parent 676d2aa commit b31043b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/views/settings/Notifications.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,8 +569,8 @@ export default class Notifications extends React.PureComponent<IProps, IState> {
569569

570570
const rows = this.state.vectorPushRules[category].map(r => <tr key={category + r.ruleId}>
571571
<td>{ r.description }</td>
572-
<td>{ makeRadio(r, VectorState.On) }</td>
573572
<td>{ makeRadio(r, VectorState.Off) }</td>
573+
<td>{ makeRadio(r, VectorState.On) }</td>
574574
<td>{ makeRadio(r, VectorState.Loud) }</td>
575575
</tr>);
576576

@@ -594,8 +594,8 @@ export default class Notifications extends React.PureComponent<IProps, IState> {
594594
<thead>
595595
<tr>
596596
<th>{ sectionName }</th>
597-
<th>{ _t("On") }</th>
598597
<th>{ _t("Off") }</th>
598+
<th>{ _t("On") }</th>
599599
<th>{ _t("Noisy") }</th>
600600
</tr>
601601
</thead>

0 commit comments

Comments
 (0)