From 88b488857c6276c047239fe64d4f67529d37bfc9 Mon Sep 17 00:00:00 2001 From: axolotle Date: Mon, 22 Mar 2021 22:37:59 +0100 Subject: [PATCH] update logs api routes --- app/src/views/tool/ToolLog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/views/tool/ToolLog.vue b/app/src/views/tool/ToolLog.vue index 6653d4d9..e7e3ed00 100644 --- a/app/src/views/tool/ToolLog.vue +++ b/app/src/views/tool/ToolLog.vue @@ -127,7 +127,7 @@ export default { }, shareLogs () { - api.get(`logs/${this.name}?share`, null, { websocket: true }).then(({ url }) => { + api.get(`logs/${this.name}/share`, null, { websocket: true }).then(({ url }) => { window.open(url, '_blank') }) }