Fix spaceless async in ignored files too

This commit is contained in:
David Baker 2019-01-09 19:14:30 +00:00
parent 8e4d8ccca7
commit f269b5fbbc
5 changed files with 4 additions and 5 deletions

View file

@ -835,7 +835,7 @@ module.exports = React.createClass({
SettingsStore.getLabsFeatures().forEach((featureId) => {
// TODO: this ought to be a separate component so that we don't need
// to rebind the onChange each time we render
const onChange = async(e) => {
const onChange = async (e) => {
const checked = e.target.checked;
if (featureId === "feature_lazyloading") {
const confirmed = await this._onLazyLoadChanging(checked);