Prevent radio button interactions on OIDC app view

This commit is contained in:
= 2026-06-22 11:37:19 +00:00
parent 9c9e3ca43c
commit 335288c8b5

View File

@ -347,12 +347,13 @@ class="btn-sm btn-square btn-outline border-gray-200"
<span class="text-xs font-medium text-gray-500">Client Authentication</span> <span class="text-xs font-medium text-gray-500">Client Authentication</span>
<div class="md:col-span-3 space-y-3"> <div class="md:col-span-3 space-y-3">
<label class="flex items-center gap-2 cursor-pointer"> <label class="flex items-center gap-2 cursor-pointer">
<input type="radio" checked readonly class="radio radio-primary radio-xs"/> <input type="radio" checked readonly @click.prevent
class="radio radio-primary radio-xs"/>
<span <span
class="text-xs font-medium text-gray-700 ">Client secret</span> class="text-xs font-medium text-gray-700 ">Client secret</span>
</label> </label>
<label class="flex items-center gap-2 opacity-50 cursor-not-allowed"> <label class="flex items-center gap-2 opacity-50 cursor-not-allowed">
<input type="radio" readonly disabled class="radio radio-xs"/> <input type="radio" readonly @click.prevent class="radio radio-xs"/>
<span class="text-xs font-medium text-gray-700">Public key / Private key</span> <span class="text-xs font-medium text-gray-700">Public key / Private key</span>
</label> </label>
</div> </div>