eslint --fix: added missing semicolons

This commit is contained in:
Baptiste Grob
2020-02-04 14:20:20 +01:00
parent 8667aba3de
commit 7d1aff6fe2
36 changed files with 177 additions and 177 deletions

View File

@@ -17,7 +17,7 @@ class EditorMenuCtrl extends PureCtrl {
this.syncManager = syncManager;
this.state = {
isDesktop: isDesktopApplication()
}
};
}
$onInit() {
@@ -29,7 +29,7 @@ class EditorMenuCtrl extends PureCtrl {
this.setState({
editors: editors,
defaultEditor: defaultEditor
})
});
};
selectComponent(component) {
@@ -42,7 +42,7 @@ class EditorMenuCtrl extends PureCtrl {
}
this.$timeout(() => {
this.callback()(component);
})
});
}
toggleDefaultForEditor(editor) {
@@ -70,7 +70,7 @@ class EditorMenuCtrl extends PureCtrl {
this.syncManager.sync();
this.setState({
defaultEditor: component
})
});
}
removeEditorDefault(component) {
@@ -79,7 +79,7 @@ class EditorMenuCtrl extends PureCtrl {
this.syncManager.sync();
this.setState({
defaultEditor: null
})
});
}
shouldDisplayRunningLocallyLabel(component) {