From ea521263a59a71d666773b02eda5f978879fb1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Tue, 21 Sep 2021 14:09:51 +0200 Subject: [PATCH] Follow Ulfs review suggestions --- cypress/integration/Admin.DonationInfo.feature | 4 ++-- webapp/components/Dropdown.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cypress/integration/Admin.DonationInfo.feature b/cypress/integration/Admin.DonationInfo.feature index 1f925f9e2..4aa869760 100644 --- a/cypress/integration/Admin.DonationInfo.feature +++ b/cypress/integration/Admin.DonationInfo.feature @@ -1,7 +1,7 @@ Feature: Admin sets donations info settings As an admin - I want to switch the donation info on and off and like I to change to donations goal and progress - In order to manage the foundings + I want to switch the donation info on and off and like to change to donations goal and progress + In order to manage the funds Background: Given the following "users" are in the database: diff --git a/webapp/components/Dropdown.vue b/webapp/components/Dropdown.vue index e10a45bf0..ebedf10a9 100644 --- a/webapp/components/Dropdown.vue +++ b/webapp/components/Dropdown.vue @@ -33,7 +33,7 @@ export default { data() { return { isPopoverOpen: false, - developperNoAutoClosing: false, // stops automatic closing of menu for developper purposes: default is 'false' + developerNoAutoClosing: false, // stops automatic closing of menu for developper purposes: default is 'false' } }, computed: { @@ -114,7 +114,7 @@ export default { } }, popoveMouseLeave() { - if (this.developperNoAutoClosing) return + if (this.developerNoAutoClosing) return if (this.disabled) { return }