[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -45,21 +45,21 @@ export class AnalyticsComponent implements OnChanges {
@Output()
reportDeleted = new EventEmitter();
@ViewChild('analyticsgenerator')
analyticsgenerator: AnalyticsGeneratorComponent;
@ViewChild('analyticsGenerator')
analyticsGenerator: AnalyticsGeneratorComponent;
reportParamQuery: ReportQuery;
ngOnChanges(changes: SimpleChanges) {
this.analyticsgenerator.reset();
this.analyticsGenerator.reset();
}
public showReport($event) {
this.analyticsgenerator.generateReport(this.reportId, $event);
this.analyticsGenerator.generateReport(this.reportId, $event);
}
public reset() {
this.analyticsgenerator.reset();
this.analyticsGenerator.reset();
}
public onEditReport(name: string) {