From 20b8692c9188121ceb683716af8e882d35c95a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Midb=C3=B8e?= Date: Thu, 20 Feb 2020 13:56:56 +0100 Subject: [PATCH] Forgot to toggle isActive when clicked. --- src/components/ui/SeasonedButton.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ui/SeasonedButton.vue b/src/components/ui/SeasonedButton.vue index 197bba8..8e2e9f5 100644 --- a/src/components/ui/SeasonedButton.vue +++ b/src/components/ui/SeasonedButton.vue @@ -23,6 +23,7 @@ export default { }, methods: { emit() { + this.isActive = !this.isActive; this.$emit('click') } }