From fa7691923dd44526876e477360d200487c6b90a7 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 --- .../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 7720370b00..bd5796e4b2 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.30.2