Skip to content
Snippets Groups Projects
Commit 70baf42f authored by toto's avatar toto
Browse files

fix: display water rather than water line depth in results select

refs #496
parent afdd8d48
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!178Resolve "Courbe de remous: visualiser les profils de sections"
Pipeline #140019 passed
......@@ -39,7 +39,7 @@ export class SelectSectionDetailsComponent {
public pointLabel(p: any): string {
const abs = this.intlService.localizeText("INFO_REMOUSRESULTS_ABSCISSE");
const tirant = this.intlService.localizeText("INFO_REMOUSRESULTS_TIRANT");
return abs + " : " + formattedValue(p.x, 1) + " - " + tirant + " : " + fv(p.z);
return abs + " : " + formattedValue(p.x, 1) + " - " + tirant + " : " + fv(p.y);
}
/**
......
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