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

Commit 10b0051

Browse files
committed
Appease the linter
1 parent 52c73a7 commit 10b0051

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

res/css/views/dialogs/_DevtoolsDialog.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ limitations under the License.
244244
white-space: nowrap;
245245
}
246246

247-
td+td, th+th {
247+
td + td, th + th {
248248
width: auto;
249249
}
250250

src/components/views/dialogs/DevtoolsDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ class SettingsExplorer extends React.Component {
914914
}
915915

916916
renderCanEditLevel(roomId, level) {
917-
let canEdit = SettingsStore.canSetValue(this.state.editSetting, roomId, level);
917+
const canEdit = SettingsStore.canSetValue(this.state.editSetting, roomId, level);
918918
const className = canEdit ? 'mx_DevTools_SettingsExplorer_mutable' : 'mx_DevTools_SettingsExplorer_immutable';
919919
return <td className={className}><code>{canEdit.toString()}</code></td>;
920920
}

0 commit comments

Comments
 (0)