mirror of https://github.com/vector-im/riot-web
Merge pull request #6406 from matrix-org/travis/notifications-ui-order
Revert order of notification setting radiospull/21833/head
commit
4856559661
|
@ -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>
|
||||||
|
|
|
@ -1146,8 +1146,8 @@
|
||||||
"New keyword": "New keyword",
|
"New keyword": "New keyword",
|
||||||
"Global": "Global",
|
"Global": "Global",
|
||||||
"Mentions & keywords": "Mentions & keywords",
|
"Mentions & keywords": "Mentions & keywords",
|
||||||
"On": "On",
|
|
||||||
"Off": "Off",
|
"Off": "Off",
|
||||||
|
"On": "On",
|
||||||
"Noisy": "Noisy",
|
"Noisy": "Noisy",
|
||||||
"Notification targets": "Notification targets",
|
"Notification targets": "Notification targets",
|
||||||
"There was an error loading your notification settings.": "There was an error loading your notification settings.",
|
"There was an error loading your notification settings.": "There was an error loading your notification settings.",
|
||||||
|
|
Loading…
Reference in New Issue