From cf99f55f3d142a31b231b03cf9e51a3417394ecb Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 14 Oct 2020 14:20:53 +0200 Subject: [PATCH] fix typo making the room list not shown on the mobile layout --- src/ui/web/session/SessionView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/web/session/SessionView.js b/src/ui/web/session/SessionView.js index 2c6885de..0be4e818 100644 --- a/src/ui/web/session/SessionView.js +++ b/src/ui/web/session/SessionView.js @@ -26,7 +26,7 @@ export class SessionView extends TemplateView { return t.div({ className: { "SessionView": true, - "room-shown": vm => vm.selectionId !== "placeholder" + "room-shown": vm => vm.activeSection !== "placeholder" }, }, [ t.view(new SessionStatusView(vm.sessionStatusViewModel)),