Skip to content

Commit

Permalink
Fixes #36736 - Correct memory fact on HW properties card
Browse files Browse the repository at this point in the history
  • Loading branch information
chris1984 committed Sep 14, 2023
1 parent 7089672 commit 0f2026b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const HwPropertiesCard = ({ isExpandedGlobal, hostDetails }) => {
const coreSocket = facts?.['cpu::core(s)_per_socket'];
const reportedFacts = propsToCamelCase(hostDetails?.reported_data || {});
const totalDisks = reportedFacts?.disksTotal;
const memory = facts?.['dmi::memory::maximum_capacity'];
const memory = facts?.['dmi::memory::size'];

return (
<CardTemplate
Expand Down

0 comments on commit 0f2026b

Please sign in to comment.