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/18048pull/21833/head
parent
676d2aa187
commit
b31043b5eb
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue