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"
>
-
-
-
-
-
-
+
+
-
-
-
-
- {{ $t('group.type') }}
-
-
-
-
-
-
-
-
-
-
-
-
- {{ $t('group.description') }}
-
-
-
- {{ `${contentLength} / ${descriptionMin}` }}
-
-
+
+
+
-
-
-
- {{ $t('group.actionRadius') }}
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('group.description') }}
+
+
+
+ {{ `${contentLength} / ${descriptionMin}` }}
+
+
+
+
+
+
+ {{ $t('group.actionRadius') }}
+
+
+
-
-
-
-
-
-
-
-
-
- {{ $t('actions.cancel') }}
-
-
- {{ update ? $t('group.update') : $t('group.save') }}
-
-
-
+
+
+
+
+
+
+
+
+ {{ $t('actions.cancel') }}
+
+
+ {{ update ? $t('group.update') : $t('group.save') }}
+
+
+
@@ -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 {