From 6298194db3cb887b095059976a9f0ebab2c1c7cf Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 25 Apr 2023 14:11:00 +0200 Subject: [PATCH] fix updating of group type and action radius changes to the form --- webapp/components/Group/GroupForm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/components/Group/GroupForm.vue b/webapp/components/Group/GroupForm.vue index 71ec49a26..be8ef3c79 100644 --- a/webapp/components/Group/GroupForm.vue +++ b/webapp/components/Group/GroupForm.vue @@ -318,10 +318,10 @@ export default { return false }, changeGroupType(event) { - this.formData.groupType = event.target.value + this.$refs.groupForm.update('groupType', event.target.value) }, changeActionRadius(event) { - this.formData.actionRadius = event.target.value + this.$refs.groupForm.update('actionRadius', event.target.value) }, updateEditorDescription(value) { this.$refs.groupForm.update('description', value)