Skip to content
Snippets Groups Projects
Commit 41398371 authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix #127 : le *ngIf cassait la disponibilité du ViewChild

parent 8bab5feb
No related branches found
No related tags found
1 merge request!34Resolve "Export des graphiques"
......@@ -40,7 +40,7 @@
<!-- journal -->
<log></log>
<div *ngIf="hasData">
<div [hidden]="! hasData"><!-- *ngIf breaks @ViewChild availability-->
<!-- résultats numériques -->
<var-results></var-results>
</div>
......@@ -258,10 +258,6 @@ export class RemousResultsComponent implements DoCheck {
return this.intlService.localizeText("INFO_REMOUSRESULTS_ABSCISSE");
}
private get uitextTirant() {
return this.intlService.localizeText("INFO_REMOUSRESULTS_TIRANT");
}
private get uitextFond() {
return this.intlService.localizeText("INFO_REMOUSRESULTS_FOND");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment