Skip to content
Snippets Groups Projects
Commit b2dfb63e authored by François Grand's avatar François Grand
Browse files

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

refs #614
parent f9c74ffa
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!216Resolve "Structure: Ajouter une erreur sur l'ennoiement"
......@@ -127,7 +127,7 @@ export class PrebarrageResults extends MultiDimensionResults implements IObserva
}
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) */
......
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