Skip to content

Commit

Permalink
fix(FR-547): fix calculate logic for agent list memory usage progress…
Browse files Browse the repository at this point in the history
… percent
  • Loading branch information
ironAiken2 committed Feb 18, 2025
1 parent 9b5b7b2 commit ece9052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react/src/components/AgentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ const AgentList: React.FC<AgentListProps> = ({
{mergedResourceSlots?.mem?.human_readable_name}
</Typography.Text>
<BAIProgressWithLabel
percent={liveStat.mem_util.ratio}
percent={liveStat.mem_util.ratio * 100}
width={120}
valueLabel={
convertBinarySizeUnit(
Expand Down

0 comments on commit ece9052

Please sign in to comment.