From 84e483a450b5ac2f0040f56c275b9525b018577d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Thu, 16 Mar 2023 16:03:51 +0100 Subject: [PATCH] Fix variable name --- webapp/components/ContributionForm/ContributionForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index 70a98649a..8863fbc8a 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -172,7 +172,7 @@ export default { return this.group && this.group.id }, showGroupHint() { - return this.grouupId && ['closed', 'hidden'].includes(this.group.groupType) + return this.groupId && ['closed', 'hidden'].includes(this.group.groupType) }, groupName() { return this.group && this.group.name