From 836ba040506446cca09a57798ec3c0a4a9796961 Mon Sep 17 00:00:00 2001 From: Stuart Laverick Date: Fri, 2 Feb 2024 15:55:37 +0000 Subject: [PATCH 1/2] Set char limit on service useful info description to 1000 --- src/views/services/inputs/UsefulInfosInput.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/services/inputs/UsefulInfosInput.vue b/src/views/services/inputs/UsefulInfosInput.vue index 11377e4a..c040ae7d 100644 --- a/src/views/services/inputs/UsefulInfosInput.vue +++ b/src/views/services/inputs/UsefulInfosInput.vue @@ -19,7 +19,7 @@ :id="`useful_infos.${index}.description`" label="Description" hint="Provide detail to the title above. For example, if you picked ‘Parking’ you might say “There is no parking available on site, however there is pay and display opposite”." - :maxlength="150" + :maxlength="1000" :error="errors.get(`useful_infos.${index}.description`)" :extensions="extensions" /> @@ -132,7 +132,10 @@ export default { usefulInfos.find( usefulInfo => usefulInfo.title === usefulInfoTitleOption.value ) !== undefined; - const newOption = { ...usefulInfoTitleOption, disabled: hasBeenUsed }; + const newOption = { + ...usefulInfoTitleOption, + disabled: hasBeenUsed + }; this.$set(this.usefulInfoTitleOptions, index, newOption); }); }, From 5def680bf4bf7e3d9a51ab2d254fd73a2706d42d Mon Sep 17 00:00:00 2001 From: Stuart Laverick Date: Thu, 14 Mar 2024 17:20:59 +0000 Subject: [PATCH 2/2] Fixed typo in service-locations/Show.vue --- src/views/service-locations/Show.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/service-locations/Show.vue b/src/views/service-locations/Show.vue index 4986eb87..bed9067b 100644 --- a/src/views/service-locations/Show.vue +++ b/src/views/service-locations/Show.vue @@ -25,7 +25,7 @@ -