[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2025-01-27 14:22:41 +01:00
الأصل 1f11445080
التزام e713f20e00

عرض الملف

@@ -22,6 +22,7 @@ const ogUrl = document.getElementById('ogUrl');
const appTitle = document.getElementById('appTitle'); const appTitle = document.getElementById('appTitle');
const appDescription = document.getElementById('appDescription'); const appDescription = document.getElementById('appDescription');
const joinDescription = document.getElementById('joinDescription'); const joinDescription = document.getElementById('joinDescription');
const joinRoomBtn = document.getElementById('joinRoomButton');
const joinLastLabel = document.getElementById('joinLastLabel'); const joinLastLabel = document.getElementById('joinLastLabel');
const features = document.getElementById('features'); const features = document.getElementById('features');
@@ -152,8 +153,8 @@ function customizeApp() {
if (joinDescription && BRAND.app?.joinDescription) { if (joinDescription && BRAND.app?.joinDescription) {
joinDescription.innerHTML = BRAND.app.joinDescription; joinDescription.innerHTML = BRAND.app.joinDescription;
} }
if (joinRoomButton && BRAND.app?.joinButtonLabel) { if (joinRoomBtn && BRAND.app?.joinButtonLabel) {
joinRoomButton.innerText = BRAND.app.joinButtonLabel; // Common.js joinRoomBtn.innerText = BRAND.app.joinButtonLabel;
} }
if (joinLastLabel && BRAND.app?.joinLastLabel) { if (joinLastLabel && BRAND.app?.joinLastLabel) {
joinLastLabel.innerText = BRAND.app.joinLastLabel; joinLastLabel.innerText = BRAND.app.joinLastLabel;