From e62295ab38ae87703890876c2bb1cedcaba83288 Mon Sep 17 00:00:00 2001 From: Devika Babrekar Date: Mon, 6 Apr 2026 11:48:49 +0530 Subject: [PATCH] mgr/dashboard: Fixing IOPs chart values as whole numbers Fixes: https://tracker.ceph.com/issues/75872 Signed-off-by: Devika Babrekar --- .../performance-card/performance-card.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/performance-card/performance-card.component.html b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/performance-card/performance-card.component.html index 2d7d7a7f772e..1b62c8a0c306 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/performance-card/performance-card.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/performance-card/performance-card.component.html @@ -31,7 +31,8 @@ chartTitle="IOPS" [chartKey]="performanceTypes?.IOPS" [dataUnit]="metricUnitMap?.iops" - [rawData]="chartDataSignal()?.iops"> + [rawData]="chartDataSignal()?.iops" + [decimals]="0">