From f04a2f6c3ba5e2ed50f1d29cad6b3081e686ffd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 12 Apr 2021 14:26:28 +0200 Subject: [PATCH] Fix navigating to board details (fix #2951) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/navigation/AppNavigationBoard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/navigation/AppNavigationBoard.vue b/src/components/navigation/AppNavigationBoard.vue index 721ba92ec..06e1b4a1c 100644 --- a/src/components/navigation/AppNavigationBoard.vue +++ b/src/components/navigation/AppNavigationBoard.vue @@ -276,7 +276,7 @@ export default { ) }, actionDetails() { - this.$router.push({ name: 'board.details', params: { id: this.routeTo.id } }) + this.$router.push({ name: 'board.details', params: { id: this.board.id } }) }, applyEdit(e) { this.editing = false