Skip to content
Snippets Groups Projects
Commit 4d81f6a7 authored by AUBRY JEAN-PASCAL's avatar AUBRY JEAN-PASCAL
Browse files

fix: convert pab table values in number when they are type of string

Refs #652
parent 8c52cadb
No related branches found
No related tags found
2 merge requests!252release: version 4.18.0,!249Resolve "PAB: Erreur d'abscisses sur le profil en long"
Pipeline #162767 passed
......@@ -1385,6 +1385,9 @@ export class PabTableComponent implements AfterViewInit, AfterViewChecked, OnIni
}
public getCellValue(cell) {
if(typeof cell.model.singleValue === "string") {
cell.model.singleValue = +cell.model.singleValue;
}
return round(cell.model.singleValue, this.nDigits);
}
......
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