diff --git a/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.html b/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.html
index 7bf0eb02..c81ac286 100644
--- a/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.html
+++ b/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.html
@@ -18,8 +18,12 @@
P-Value
-
-
+
+ {{ getSignificantFigures(data.value, 3) }}
+
+
+ {{ getSignificantFigures(data.pValue, 3) }}
+
@@ -34,17 +38,23 @@
[style]="getIntervalPositions(data)"
>
-
+
+ {{ getSignificantFigures(data.intervalMin, 3) }}
+
-
+
+ {{ getSignificantFigures(data.intervalMax, 3) }}
+
-
+
+ {{ getSignificantFigures(data.value, 3) }}
+
diff --git a/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.ts b/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.ts
index c3eb7e98..daec3512 100644
--- a/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.ts
+++ b/src/app/features/genes/components/gene-comparison-tool/components/gene-comparison-tool-details-panel/gene-comparison-tool-details-panel.component.ts
@@ -96,7 +96,7 @@ export class GeneComparisonToolDetailsPanelComponent {
}
getSignificantFigures(n: any, b: any) {
- const emdash = '—'; // Shift+Option+Hyphen
+ const emdash = '\u2014'; // Shift+Option+Hyphen
if (n === null || n === undefined)
return emdash;
return this.helperService.getSignificantFigures(n, b);