Skip to content

Commit

Permalink
fix: enable secure boot checkbox in the UI
Browse files Browse the repository at this point in the history
Fixes: #175

Signed-off-by: Artem Chernyshev <[email protected]>
  • Loading branch information
Unix4ever committed Jan 9, 2025
1 parent 394065f commit 7052e8b
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions frontend/src/views/omni/Modals/DownloadInstallationMedia.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,11 @@ included in the LICENSE file.

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

<!-- TODO(image-factory): enable this after further testing and making sure that it works -->
<template v-if="false">
<h3 class="text-sm text-naturals-N14">
Secure Boot
</h3>

<t-checkbox
label="Enabled"
:disabled="installationMedia?.spec?.no_secure_boot"
@click="secureBoot = !secureBoot"
:checked="secureBoot && !installationMedia?.spec?.no_secure_boot"/>
</template>
<t-checkbox
label="Secure Boot"
:disabled="installationMedia?.spec?.no_secure_boot"
@click="secureBoot = !secureBoot"
:checked="secureBoot && !installationMedia?.spec?.no_secure_boot"/>

<tooltip>
<template #description>
Expand Down

0 comments on commit 7052e8b

Please sign in to comment.