Appease the linter
This commit is contained in:
parent
52c73a7a58
commit
10b0051c02
2 changed files with 2 additions and 2 deletions
|
@ -244,7 +244,7 @@ limitations under the License.
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
td+td, th+th {
|
||||
td + td, th + th {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -914,7 +914,7 @@ class SettingsExplorer extends React.Component {
|
|||
}
|
||||
|
||||
renderCanEditLevel(roomId, level) {
|
||||
let canEdit = SettingsStore.canSetValue(this.state.editSetting, roomId, level);
|
||||
const canEdit = SettingsStore.canSetValue(this.state.editSetting, roomId, level);
|
||||
const className = canEdit ? 'mx_DevTools_SettingsExplorer_mutable' : 'mx_DevTools_SettingsExplorer_immutable';
|
||||
return <td className={className}><code>{canEdit.toString()}</code></td>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue