This commit is contained in:
Guillem George 2026-05-16 19:02:11 +02:00
parent 3914fbdba8
commit b7d988048b
2 changed files with 12 additions and 24 deletions

View file

@ -103,9 +103,9 @@ async function fetchRoomConfig(room) {
setCurrentRoomConfig(res);
// Update HTML
const roomNameElt = document.getElementById("room-name");
roomNameElt.innerText = res.metadata.name;
document.getElementById("room-name").innerText = res.metadata.name;
document.getElementById("room-description").innerText = res.metadata.description;
document.getElementById("room-description").style.display = "block";
}
export {