From 171c6f68a6dcdbd73751ef3379d9f2076f463e09 Mon Sep 17 00:00:00 2001 From: SimonFair <39065407+SimonFair@users.noreply.github.com> Date: Wed, 22 Oct 2025 21:16:43 +0100 Subject: [PATCH] Fix bootvga check. --- emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php b/emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php index e41ad22e8..bde11c7c7 100644 --- a/emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php +++ b/emhttp/plugins/dynamix.vm.manager/templates/Custom.form.php @@ -2597,7 +2597,7 @@ $(function() { } $("#gpubootvga"+myindex).removeClass(); if (mylabel == "_(None)_") $("#gpubootvga"+myindex).addClass('hidden'); - if (myvalue != "_(virtual)_" && myvalue != "" && myvalue != "_(nogpu)_") { + if (myvalue != "virtual" && myvalue != "" && myvalue != "nogpu") { if (ValidGPUs[myvalue].bootvga != "1") $("#gpubootvga"+myindex).addClass('hidden'); } else { $("#gpubootvga"+myindex).addClass('hidden');