Skip to content

Commit eaa5c8b

Browse files
authored
Fix unreleased bug in host summary UI (#16999)
1 parent 7125555 commit eaa5c8b

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

frontend/pages/hosts/details/cards/HostSummary/HostSummary.tsx

+16-4
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,24 @@ const HostSummary = ({
271271
platform,
272272
diskEncryptionEnabled
273273
);
274+
274275
let statusText;
275-
if (platform === "chrome") {
276-
statusText = "Always on";
277-
} else {
278-
statusText = diskEncryptionEnabled ? "On" : "Off";
276+
switch (true) {
277+
case platform === "chrome":
278+
statusText = "Always on";
279+
break;
280+
case diskEncryptionEnabled === true:
281+
statusText = "On";
282+
break;
283+
case diskEncryptionEnabled === false:
284+
statusText = "Off";
285+
break;
286+
default:
287+
// something unexpected happened on the way to this component, display whatever we got or
288+
// "Unknown" to draw attention to the issue.
289+
statusText = diskEncryptionEnabled || "Unknown";
279290
}
291+
280292
return (
281293
<div className="info-flex__item info-flex__item--title">
282294
<span className="info-flex__header">Disk encryption</span>

frontend/utilities/helpers.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,11 @@ export const normalizeEmptyValues = (
783783
return reduce(
784784
hostData,
785785
(result, value, key) => {
786-
if ((Number.isFinite(value) && value !== 0) || !isEmpty(value)) {
786+
if (
787+
(Number.isFinite(value) && value !== 0) ||
788+
!isEmpty(value) ||
789+
typeof value === "boolean"
790+
) {
787791
Object.assign(result, { [key]: value });
788792
} else {
789793
Object.assign(result, { [key]: DEFAULT_EMPTY_CELL_VALUE });

0 commit comments

Comments
 (0)