We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5654ed0 commit aa861e2Copy full SHA for aa861e2
src/components/ShardsTable/columns.tsx
@@ -77,7 +77,10 @@ export const getCpuCoresColumn: GetShardsColumn = () => {
77
render: ({row}) => {
78
const usage = Number(row.CPUCores) * 100 || 0;
79
return (
80
- <UsageLabel value={roundToPrecision(usage, 2)} theme={getUsageSeverity(usage)} />
+ <UsageLabel
81
+ value={Math.ceil(roundToPrecision(usage, 2))}
82
+ theme={getUsageSeverity(usage)}
83
+ />
84
);
85
},
86
align: DataTable.LEFT,
0 commit comments