Merge pull request #739 from t10r/fix/multi-user-videochat-mode

fix multi user videochat mode
This commit is contained in:
David Négrier
2021-02-19 14:54:38 +01:00
committed by GitHub
2 changed files with 10 additions and 15 deletions
+1 -1
View File
@@ -192,7 +192,7 @@ class LayoutManager {
} else {
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('sidebar').style.display = 'none';
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('main-section').style.display = 'none';
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('chat-mode').style.display = 'flex';
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('chat-mode').style.display = 'grid';
}
for (const div of this.importantDivs.values()) {