From 529d97d8238879e06a4fd57086c47db8845c41dd Mon Sep 17 00:00:00 2001 From: Jonas Plum Date: Sat, 18 Dec 2021 11:03:45 +0100 Subject: [PATCH] Fix goto redirection --- ui/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/App.vue b/ui/src/App.vue index e065924..f824974 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -182,7 +182,7 @@ export default Vue.extend({ } this.$router.push({ name: "Ticket", - params: { id: this.goto.toString() } + params: { id: this.goto.toString(), type: "-" } }); }, openTicketList: function (type: string) {