diff --git a/src/views/service-locations/Show.vue b/src/views/service-locations/Show.vue
index 4986eb8..bed9067 100644
--- a/src/views/service-locations/Show.vue
+++ b/src/views/service-locations/Show.vue
@@ -25,7 +25,7 @@
-
+
Please be certain of the action before deleting a service
location
diff --git a/src/views/services/inputs/UsefulInfosInput.vue b/src/views/services/inputs/UsefulInfosInput.vue
index 11377e4..c040ae7 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);
});
},