Always show Programme in the live room More menu.
Deploy Ladill Meet / deploy (push) Successful in 46s

Use programme.svg for conferences and webinars on mobile and desktop; the panel stays available with an empty state when Events has not linked a lineup yet.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-02 00:13:50 +00:00
co-authored by Cursor
parent fa9b4138af
commit 17dd7107ee
6 changed files with 130 additions and 38 deletions
+6
View File
@@ -48,6 +48,7 @@ function meetRoom() {
waitingCount: 0,
isWebinar: false,
isConference: false,
sessionNounLabel: '',
isGreenRoom: false,
goingLive: false,
presenterRefs: [],
@@ -148,6 +149,7 @@ function meetRoom() {
this.inBreakout = el.dataset.inBreakout === '1';
this.isWebinar = el.dataset.isWebinar === '1';
this.isConference = el.dataset.isConference === '1';
this.sessionNounLabel = el.dataset.sessionNoun || '';
this.isGreenRoom = el.dataset.isGreenRoom === '1';
this.audioOnly = el.dataset.audioOnly === '1';
this.isSpace = el.dataset.isSpace === '1';
@@ -2082,6 +2084,10 @@ function meetRoom() {
},
sessionNoun() {
if (this.sessionNounLabel) {
return this.sessionNounLabel;
}
return this.isConference ? 'conference' : 'meeting';
},