From 72c9ba874788e8d13cd54e0905de8132055a6200 Mon Sep 17 00:00:00 2001 From: Alex <apuret@e-biz.fr> Date: Thu, 27 Aug 2020 12:44:37 +0200 Subject: [PATCH] fix: set / to href attribute --- plugins/deadlock-extension/src/view/briefingView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/deadlock-extension/src/view/briefingView.ts b/plugins/deadlock-extension/src/view/briefingView.ts index f75b3316..b83d7ebb 100644 --- a/plugins/deadlock-extension/src/view/briefingView.ts +++ b/plugins/deadlock-extension/src/view/briefingView.ts @@ -72,7 +72,7 @@ export default class BriefingView extends View { if (key !== '3000') { pathsLength++; const path = this.userChallengeConfig?.paths[key]; - adresses += `<li>${key} binded on <a href="https://${this.userChallengeConfig?.host}/${path}">${path}/</a></li>`; + adresses += `<li>${key} binded on <a href="https://${this.userChallengeConfig?.host}/${path}/">${path}</a></li>`; } } -- GitLab