diff --git a/webapp/components/Group/GroupForm.vue b/webapp/components/Group/GroupForm.vue index 843d256be..71ec49a26 100644 --- a/webapp/components/Group/GroupForm.vue +++ b/webapp/components/Group/GroupForm.vue @@ -110,7 +110,7 @@ name="warning" /> - + - @@ -20,7 +16,6 @@ export default { name: 'ActionRadiusSelect', props: ['value'], data() { - const actionRadius = '' return { actionRadiusOptions: ['regional', 'national', 'continental', 'global'], } @@ -28,7 +23,7 @@ export default { methods: { onActionRadiusChange(event) { this.$emit('change', event.target.value) - } - } + }, + }, }