From fc75d4f370526221ce1b45613d4c8aed27d67c3f Mon Sep 17 00:00:00 2001 From: ogerly Date: Sun, 16 Oct 2022 13:03:10 +0200 Subject: [PATCH] rename computed disableButtomByUpdate to disableButtonByUpdate --- webapp/components/Group/GroupForm.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/components/Group/GroupForm.vue b/webapp/components/Group/GroupForm.vue index f8de2a438..26b4f5a19 100644 --- a/webapp/components/Group/GroupForm.vue +++ b/webapp/components/Group/GroupForm.vue @@ -277,7 +277,7 @@ export default { return true }, - disableButtomByUpdate() { + disableButtonByUpdate() { if (!this.update) return true if ( this.group.name === this.formData.name && @@ -294,8 +294,8 @@ export default { }, methods: { checkFormError(error) { - if (!this.update && error && !!error && this.disableButtomByUpdate) return true - if (this.update && !error && this.disableButtomByUpdate) return true + if (!this.update && error && !!error && this.disableButtonByUpdate) return true + if (this.update && !error && this.disableButtonByUpdate) return true return false }, changeGroupType(event) {