From ccd5cc03f1892b64b89ac9a83158d7acf045dd83 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Sat, 29 May 2021 13:24:21 +0200 Subject: [PATCH] Fixed issue of not resizeable copyright panel --- front/src/WebRtc/CopyrightInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/WebRtc/CopyrightInfo.ts b/front/src/WebRtc/CopyrightInfo.ts index 2afa2864..d9be3481 100644 --- a/front/src/WebRtc/CopyrightInfo.ts +++ b/front/src/WebRtc/CopyrightInfo.ts @@ -93,7 +93,7 @@ class CopyrightInfo { private loadCoWebsite(coDiv: HTMLDivElement) : Promise { // add pre-loaded text - coDiv.innerHTML= "
" + CopyrightInfo.escapeTags(this.copyrightTxt ?? '') + "
"; + coDiv.innerHTML= ""; return Promise.resolve(); } }