Skip to content
Snippets Groups Projects

Resolve "Faire les modifs nécessaires pour prendre en compte jalhyd#36"

6 files
+ 114
116
Compare changes
  • Side-by-side
  • Inline
Files
6
  • 0b7169af
    ticket #64 : modifs induites par l'introduction dans jalhyd de... · 0b7169af
    francois.grand authored
    ticket #64 : modifs induites par l'introduction dans jalhyd de Result/ResultElement (hors classes composant)
@@ -61,14 +61,14 @@ export class CalculatorResultsComponent implements AfterViewChecked {
}
private getFixedVarResultsStyleDisplay() {
return this._formulaire != undefined && this._formulaire.hasFixVarResults() ? "block" : "none";
return this._formulaire != undefined && this._formulaire.hasFixVarResults ? "block" : "none";
}
private getSectionResultsStyleDisplay() {
return this._formulaire != undefined && this._formulaire.hasSectionResults() ? "block" : "none";
return this._formulaire != undefined && this._formulaire.hasSectionResults ? "block" : "none";
}
private getRemousResultsStyleDisplay() {
return this._formulaire != undefined && this._formulaire.hasRemousResults() ? "block" : "none";
return this._formulaire != undefined && this._formulaire.hasRemousResults ? "block" : "none";
}
}
Loading