Skip to content

Commit 2fce67e

Browse files
authored
Merge pull request #2436 from SimonFair/Bug-Language-issue-for-bootvga-value-
Fix: bootvga check.
2 parents 93ab3b1 + 171c6f6 commit 2fce67e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2597,7 +2597,7 @@ function resetForm() {
25972597
}
25982598
$("#gpubootvga"+myindex).removeClass();
25992599
if (mylabel == "_(None)_") $("#gpubootvga"+myindex).addClass('hidden');
2600-
if (myvalue != "_(virtual)_" && myvalue != "" && myvalue != "_(nogpu)_") {
2600+
if (myvalue != "virtual" && myvalue != "" && myvalue != "nogpu") {
26012601
if (ValidGPUs[myvalue].bootvga != "1") $("#gpubootvga"+myindex).addClass('hidden');
26022602
} else {
26032603
$("#gpubootvga"+myindex).addClass('hidden');

0 commit comments

Comments
 (0)