From 795f5bbb25d7cdc00bbdbb35895a33ef4a4d7fb9 Mon Sep 17 00:00:00 2001 From: Elena Makarova Date: Fri, 5 Sep 2025 17:15:55 +0300 Subject: [PATCH] fix(ShardsTable): show ceil rounded value for cpu cores --- src/components/ShardsTable/columns.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/ShardsTable/columns.tsx b/src/components/ShardsTable/columns.tsx index 535053a7d1..ba563db34e 100644 --- a/src/components/ShardsTable/columns.tsx +++ b/src/components/ShardsTable/columns.tsx @@ -77,7 +77,10 @@ export const getCpuCoresColumn: GetShardsColumn = () => { render: ({row}) => { const usage = Number(row.CPUCores) * 100 || 0; return ( - + ); }, align: DataTable.LEFT,