File tree 2 files changed +21
-5
lines changed
pages/hosts/details/cards/HostSummary
2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -271,12 +271,24 @@ const HostSummary = ({
271
271
platform ,
272
272
diskEncryptionEnabled
273
273
) ;
274
+
274
275
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" ;
279
290
}
291
+
280
292
return (
281
293
< div className = "info-flex__item info-flex__item--title" >
282
294
< span className = "info-flex__header" > Disk encryption</ span >
Original file line number Diff line number Diff line change @@ -783,7 +783,11 @@ export const normalizeEmptyValues = (
783
783
return reduce (
784
784
hostData ,
785
785
( 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
+ ) {
787
791
Object . assign ( result , { [ key ] : value } ) ;
788
792
} else {
789
793
Object . assign ( result , { [ key ] : DEFAULT_EMPTY_CELL_VALUE } ) ;
You can’t perform that action at this time.
0 commit comments