Always show Programme in the live room More menu.
Deploy Ladill Meet / deploy (push) Successful in 46s
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:
@@ -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';
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user