Commit b2dfb63e authored by Grand Francois's avatar Grand Francois
Browse files

fix: predams results: do not show fixed parameters in case of error

refs #614
Showing with 1 addition and 1 deletion
+1 -1
...@@ -127,7 +127,7 @@ export class PrebarrageResults extends MultiDimensionResults implements IObserva ...@@ -127,7 +127,7 @@ export class PrebarrageResults extends MultiDimensionResults implements IObserva
} }
public get hasWallResults(): boolean { public get hasWallResults(): boolean {
return this.cloisonResults && this.cloisonResults.result && ! this.cloisonResults.result.hasOnlyErrors; return this.cloisonResults?.result?.ok;
} }
/** retourne true si au moins un calcul a échoué (le log a un code négatif) */ /** retourne true si au moins un calcul a échoué (le log a un code négatif) */
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment