Skip to content

Commit 417b8e0

Browse files
committed
VM snapshots: Only show quiescevm checkbox if hypervisor is VMware
1 parent aab881b commit 417b8e0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ui/scripts/instances.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@
4545
quiescevm: {
4646
label: 'label.quiesce.vm',
4747
isBoolean: true,
48-
isChecked: false
48+
isChecked: false,
49+
isHidden: function(args) {
50+
return args.context.instances[0].hypervisor !== 'VMware';
51+
}
4952
}
5053
}
5154
},

0 commit comments

Comments
 (0)