lint hell

This commit is contained in:
Matthew Hodgson 2017-11-15 11:25:56 +00:00
parent 84591729a8
commit 96a3eff5d3
2 changed files with 1 additions and 2 deletions

View file

@ -21,7 +21,6 @@ import PropTypes from 'prop-types';
import {MatrixClient} from 'matrix-js-sdk'; import {MatrixClient} from 'matrix-js-sdk';
import FlairStore from '../../../stores/FlairStore'; import FlairStore from '../../../stores/FlairStore';
import dis from '../../../dispatcher'; import dis from '../../../dispatcher';
import SettingsStore from "../../../settings/SettingsStore";
class FlairAvatar extends React.Component { class FlairAvatar extends React.Component {

View file

@ -34,7 +34,7 @@ export default class AccountSettingHandler extends SettingsHandler {
if (preferredValue === null || preferredValue === undefined) { if (preferredValue === null || preferredValue === undefined) {
// Honour the old setting on read only // Honour the old setting on read only
if (settingName === "hideAvatarChanges" || settingName === "hideDisplaynameChanges") { if (settingName === "hideAvatarChanges" || settingName === "hideDisplaynameChanges") {
preferredValue = this._getSettings()["hideAvatarDisplaynameChanges"] preferredValue = this._getSettings()["hideAvatarDisplaynameChanges"];
} }
} }