From 1a273918b56862349ad9a2429d292157aa1deb5c Mon Sep 17 00:00:00 2001 From: ogerly Date: Mon, 17 Oct 2022 12:07:27 +0200 Subject: [PATCH] remove console statments, fix lint --- webapp/components/Group/GroupForm.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/webapp/components/Group/GroupForm.vue b/webapp/components/Group/GroupForm.vue index 3aeca423c..ea4d2dc85 100644 --- a/webapp/components/Group/GroupForm.vue +++ b/webapp/components/Group/GroupForm.vue @@ -136,7 +136,7 @@ icon="close" ghost size="small" - style="position: relative; display: inline-block; right: -96%; top: -33px; width: 26px;" + style="position: relative; display: inline-block; right: -96%; top: -33px; width: 26px" @click="formData.locationName = ''" > @@ -262,9 +262,6 @@ export default { return this.$filters.removeHtml(this.formData.description).length }, sameLocation() { - console.log('this.group.locationName', this.group.locationName) - console.log('this.formData.locationName', this.formData.locationName) - console.log('this.group.locationName === null && this.formData.locationName === ', this.group.locationName === null && this.formData.locationName === '') if (this.group.locationName === null || this.formData.locationName !== '') return true if (this.group.locationName !== this.formData.locationName.value) return false return true