Skip to content

Commit d2d423d

Browse files
Added HMC managed check for System Memory Reserved for KVM Guest Management (#162)
- Linux KVM percentage was being displayed for HMC Managed system, Fixed that in this change. Signed-off-by: Nikhil Ashoka <[email protected]>
1 parent 4bc184c commit d2d423d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/views/Operations/ServerPowerOperations/BiosSettings.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,9 @@
256256
</b-col>
257257
<b-col
258258
v-if="
259-
attributeKeys[key] === 'Linux KVM' ||
260-
attributeKeys[key] === 'Default'
259+
!isHmcManaged() &&
260+
(attributeKeys[key] === 'Linux KVM' ||
261+
attributeKeys[key] === 'Default')
261262
"
262263
:key="key + 1"
263264
sm="8"

0 commit comments

Comments
 (0)