From ee68d7f8d4f4d5e7af02b4325c60b8aa309bf62d Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 1 Mar 2023 10:46:20 +0000 Subject: [PATCH] Bug 32495: (follow-up) Remove required property This follow-up removes the required property from the text area as this was missed previously. Test plan: 1) In the ERM module, add a new agreement and observe that the Description field is required 2) Apply patch 3) Repeat step 1 but this time the Required flag will not be visible. 4) Submit the form with the Description field blank - the submission should work Signed-off-by: Pedro Amorim Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0307c1bbff089312618608785414c92fc1549823) Signed-off-by: Matt Blenkinsop --- .../prog/js/vue/components/ERM/AgreementsFormAdd.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue index 0a9ec12adf..bafe8ee118 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue @@ -46,7 +46,6 @@ :placeholder="$__('Description')" rows="10" cols="50" - required />
  • -- 2.39.5