Skip to content

Commit 7052e8b

Browse files
committed
fix: enable secure boot checkbox in the UI
Fixes: #175 Signed-off-by: Artem Chernyshev <[email protected]>
1 parent 394065f commit 7052e8b

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

frontend/src/views/omni/Modals/DownloadInstallationMedia.vue

+5-12
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,11 @@ included in the LICENSE file.
6060

6161
<t-input v-model="kernelArguments"/>
6262

63-
<!-- TODO(image-factory): enable this after further testing and making sure that it works -->
64-
<template v-if="false">
65-
<h3 class="text-sm text-naturals-N14">
66-
Secure Boot
67-
</h3>
68-
69-
<t-checkbox
70-
label="Enabled"
71-
:disabled="installationMedia?.spec?.no_secure_boot"
72-
@click="secureBoot = !secureBoot"
73-
:checked="secureBoot && !installationMedia?.spec?.no_secure_boot"/>
74-
</template>
63+
<t-checkbox
64+
label="Secure Boot"
65+
:disabled="installationMedia?.spec?.no_secure_boot"
66+
@click="secureBoot = !secureBoot"
67+
:checked="secureBoot && !installationMedia?.spec?.no_secure_boot"/>
7568

7669
<tooltip>
7770
<template #description>

0 commit comments

Comments
 (0)