apply prettier on gigantic find and replace (#7604)

This commit is contained in:
Joffrey JAFFEUX
2019-05-27 10:42:53 +02:00
committed by GitHub
parent 373b8a2139
commit d93f753b17
74 changed files with 336 additions and 1024 deletions

View File

@ -75,11 +75,7 @@ export default Ember.Component.extend({
this._super(...arguments);
if (this.report) {
this._renderReport(
this.report,
this.forcedModes,
this.currentMode
);
this._renderReport(this.report, this.forcedModes, this.currentMode);
} else if (this.dataSourceName) {
this._fetchReport();
}
@ -271,11 +267,7 @@ export default Ember.Component.extend({
this.set("showFilteringUI", false);
}
this._renderReport(
report,
this.forcedModes,
this.currentMode
);
this._renderReport(report, this.forcedModes, this.currentMode);
},
_renderReport(report, forcedModes, currentMode) {