Skip to content

Commit

Permalink
[mirotalk] - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jan 27, 2025
1 parent 140988b commit fec8bdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/js/brand.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const appleTouchIcon = document.getElementById('appleTouchIcon');
const appTitle = document.getElementById('appTitle');
const appDescription = document.getElementById('appDescription');
const appJoinDescription = document.getElementById('appJoinDescription');
const joinRoomBtn = document.getElementById('joinRoomButton');
const appJoinLastRoom = document.getElementById('appJoinLastRoom');

const features = document.getElementById('features');
Expand Down Expand Up @@ -143,7 +144,7 @@ function handleBrand() {
if (appTitle && brand.app?.title) appTitle.innerHTML = brand.app.title;
if (appDescription && brand.app?.description) appDescription.textContent = brand.app.description;
if (appJoinDescription && brand.app?.joinDescription) appJoinDescription.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 (appJoinLastRoom && brand.app?.joinLastLabel) appJoinLastRoom.innerText = brand.app.joinLastLabel;

!brand.html.features && elementDisplay(features, false);
Expand Down

0 comments on commit fec8bdd

Please sign in to comment.