From 1199c5d77a16d4f527aa524e16e37a078e87d858 Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 28 Sep 2022 15:21:40 +0200 Subject: [PATCH] fix lint --- webapp/components/Group/GroupForm.vue | 263 ++++++++++++-------------- 1 file changed, 124 insertions(+), 139 deletions(-) diff --git a/webapp/components/Group/GroupForm.vue b/webapp/components/Group/GroupForm.vue index b82b3953c..6454d4493 100644 --- a/webapp/components/Group/GroupForm.vue +++ b/webapp/components/Group/GroupForm.vue @@ -7,136 +7,134 @@ :schema="formSchema" @submit="submit" > - @@ -175,17 +173,8 @@ export default { categoriesActive: this.$env.CATEGORIES_ACTIVE, disabled: false, descriptionMin: 50, - groupTypeOptions: [ - 'public', - 'closed', - 'hidden' - ], - actionRadiusOptions: [ - 'regional', - 'national', - 'continental', - 'global' - ], + groupTypeOptions: ['public', 'closed', 'hidden'], + actionRadiusOptions: ['regional', 'national', 'continental', 'global'], loadingGeo: false, cities: [], formData: { @@ -223,7 +212,6 @@ export default { } }, computed: { - contentLength() { return this.$filters.removeHtml(this.formData.description).length }, @@ -334,12 +322,9 @@ export default {