We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7643bc7 commit 70e1005Copy full SHA for 70e1005
src/resources/Namespaces/ResourcesUsage.js
@@ -126,8 +126,8 @@ export const ResourcesUsage = ({ namespace }) => {
126
>
127
<UI5RadialChart
128
color="var(--sapChart_OrderedColor_6)"
129
- value={memory.usage}
130
- max={memory.capacity}
+ value={bytesToHumanReadable(memory.usage).value}
+ max={bytesToHumanReadable(memory.capacity).value}
131
additionalInfo={`${bytesToHumanReadable(memory.usage).string} / ${
132
bytesToHumanReadable(memory.capacity).string
133
}`}
0 commit comments