From c5916e7b6da9123a777743fecf054f280a496739 Mon Sep 17 00:00:00 2001 From: Gregoire Parant Date: Thu, 11 Feb 2021 15:06:12 +0100 Subject: [PATCH] Fix ci --- front/src/WebRtc/HtmlUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/WebRtc/HtmlUtils.ts b/front/src/WebRtc/HtmlUtils.ts index c9f44ee4..196b96e6 100644 --- a/front/src/WebRtc/HtmlUtils.ts +++ b/front/src/WebRtc/HtmlUtils.ts @@ -29,7 +29,7 @@ export class HtmlUtils { textReturn.innerText = text; const urlRegex = /(https?:\/\/[^\s]+)/g; text.replace(urlRegex, (url: string) => { - let link : HTMLAnchorElement = document.createElement('a'); + const link : HTMLAnchorElement = document.createElement('a'); link.innerText = ` ${url}`; link.href = url; link.target = '_blank';