From e713f20e005df48781c772faa4d6b8612440ed10 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 27 Jan 2025 14:22:41 +0100 Subject: [PATCH] [mirotalksfu] - fix typo --- public/js/Brand.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/js/Brand.js b/public/js/Brand.js index 84e4d60e..ba89088a 100644 --- a/public/js/Brand.js +++ b/public/js/Brand.js @@ -22,6 +22,7 @@ const ogUrl = document.getElementById('ogUrl'); const appTitle = document.getElementById('appTitle'); const appDescription = document.getElementById('appDescription'); const joinDescription = document.getElementById('joinDescription'); +const joinRoomBtn = document.getElementById('joinRoomButton'); const joinLastLabel = document.getElementById('joinLastLabel'); const features = document.getElementById('features'); @@ -152,8 +153,8 @@ function customizeApp() { if (joinDescription && BRAND.app?.joinDescription) { joinDescription.innerHTML = BRAND.app.joinDescription; } - if (joinRoomButton && BRAND.app?.joinButtonLabel) { - joinRoomButton.innerText = BRAND.app.joinButtonLabel; // Common.js + if (joinRoomBtn && BRAND.app?.joinButtonLabel) { + joinRoomBtn.innerText = BRAND.app.joinButtonLabel; } if (joinLastLabel && BRAND.app?.joinLastLabel) { joinLastLabel.innerText = BRAND.app.joinLastLabel;