From d7df3e2e252159851922c59c6ac1194a177a9f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 24 Jun 2020 20:07:51 +0200 Subject: [PATCH] Add setting to toggle between the modal and the sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/App.vue | 7 ++++--- src/components/navigation/AppNavigation.vue | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 71dfb99da..29ad67698 100644 --- a/src/App.vue +++ b/src/App.vue @@ -27,13 +27,13 @@ - + - + @@ -93,7 +93,8 @@ export default { }, methods: { hideModal() { - this.$store.dispatch('setCardDetailsInModal', false) + // this.$store.dispatch('setCardDetailsInModal', false) + this.$router.push({ name: 'board' }) }, }, provide() { diff --git a/src/components/navigation/AppNavigation.vue b/src/components/navigation/AppNavigation.vue index bc82ef84d..1950b0658 100644 --- a/src/components/navigation/AppNavigation.vue +++ b/src/components/navigation/AppNavigation.vue @@ -52,6 +52,13 @@