From 70baf42f92a85d5316aa00f6aad4519a04dd093f Mon Sep 17 00:00:00 2001 From: toto <toto@tata> Date: Mon, 28 Nov 2022 14:17:57 +0100 Subject: [PATCH] fix: display water rather than water line depth in results select refs #496 --- .../select-section-details/select-section-details.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/select-section-details/select-section-details.component.ts b/src/app/components/select-section-details/select-section-details.component.ts index d42b1e86a..55c21b523 100644 --- a/src/app/components/select-section-details/select-section-details.component.ts +++ b/src/app/components/select-section-details/select-section-details.component.ts @@ -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); } /** -- GitLab