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
pull/21833/head
Travis Ralston 2021-07-19 10:15:42 -06:00
parent 676d2aa187
commit b31043b5eb
1 changed files with 2 additions and 2 deletions

View File

@ -569,8 +569,8 @@ export default class Notifications extends React.PureComponent<IProps, IState> {
const rows = this.state.vectorPushRules[category].map(r => <tr key={category + r.ruleId}> const rows = this.state.vectorPushRules[category].map(r => <tr key={category + r.ruleId}>
<td>{ r.description }</td> <td>{ r.description }</td>
<td>{ makeRadio(r, VectorState.On) }</td>
<td>{ makeRadio(r, VectorState.Off) }</td> <td>{ makeRadio(r, VectorState.Off) }</td>
<td>{ makeRadio(r, VectorState.On) }</td>
<td>{ makeRadio(r, VectorState.Loud) }</td> <td>{ makeRadio(r, VectorState.Loud) }</td>
</tr>); </tr>);
@ -594,8 +594,8 @@ export default class Notifications extends React.PureComponent<IProps, IState> {
<thead> <thead>
<tr> <tr>
<th>{ sectionName }</th> <th>{ sectionName }</th>
<th>{ _t("On") }</th>
<th>{ _t("Off") }</th> <th>{ _t("Off") }</th>
<th>{ _t("On") }</th>
<th>{ _t("Noisy") }</th> <th>{ _t("Noisy") }</th>
</tr> </tr>
</thead> </thead>