Bug 33355: Fix is_perpetual radio buttons in AgreementsFormAdd

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Pedro Amorim 2023-03-28 14:23:04 +00:00 committed by Tomas Cohen Arazi
parent d3995bf08a
commit 43ff73c01d
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 10 additions and 8 deletions

View file

@ -92,12 +92,13 @@
/>
</li>
<li>
<label
for="agreement_is_perpetual"
class="radio"
<label for="agreement_is_perpetual"
>{{ $__("Is perpetual") }}:</label
>
<label for="agreement_is_perpetual_yes">
<label
class="radio"
for="agreement_is_perpetual_yes"
>{{ $__("Yes") }}:
<input
type="radio"
name="is_perpetual"
@ -105,9 +106,11 @@
:value="true"
v-model="agreement.is_perpetual"
/>
{{ $__("Yes") }}:
</label>
<label for="agreement_is_perpetual_no">
<label
class="radio"
for="agreement_is_perpetual_no"
>{{ $__("No") }}:
<input
type="radio"
name="is_perpetual"
@ -115,7 +118,6 @@
:value="false"
v-model="agreement.is_perpetual"
/>
{{ $__("No") }}:
</label>
</li>
<li>

View file

@ -270,7 +270,7 @@ form .v-select {
}
.v-select,
input:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]),
input:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
textarea {
border-color: rgba(60, 60, 60, 0.26);
border-width: 1px;