mirror of
https://github.com/vector-im/element-call.git
synced 2026-07-30 19:39:22 +00:00
fix logo in lobby
This commit is contained in:
@@ -436,7 +436,7 @@ export const GroupCallView: FC<Props> = ({
|
|||||||
muteStates={muteStates}
|
muteStates={muteStates}
|
||||||
onEnter={() => setJoined(true)}
|
onEnter={() => setJoined(true)}
|
||||||
confineToRoom={confineToRoom}
|
confineToRoom={confineToRoom}
|
||||||
hideHeader={header === HeaderStyle.None}
|
hideHeader={header !== HeaderStyle.Standard}
|
||||||
participantCount={participantCount}
|
participantCount={participantCount}
|
||||||
onShareClick={onShareClick}
|
onShareClick={onShareClick}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -363,7 +363,6 @@ export const InCallView: FC<InCallViewProps> = ({
|
|||||||
switch (headerStyle) {
|
switch (headerStyle) {
|
||||||
case HeaderStyle.AppBar: {
|
case HeaderStyle.AppBar: {
|
||||||
// dont build a header here. The AppBar will take care of it.
|
// dont build a header here. The AppBar will take care of it.
|
||||||
header = null;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case HeaderStyle.None:
|
case HeaderStyle.None:
|
||||||
|
|||||||
@@ -226,6 +226,8 @@ export const LobbyView: FC<Props> = ({
|
|||||||
toggleVideo={toggleVideo ?? undefined}
|
toggleVideo={toggleVideo ?? undefined}
|
||||||
openSettings={openSettings}
|
openSettings={openSettings}
|
||||||
hangup={!confineToRoom ? onLeaveClick : undefined}
|
hangup={!confineToRoom ? onLeaveClick : undefined}
|
||||||
|
// Logo and header are connected. We will only show the logo in SPA with header.
|
||||||
|
hideLogo={hideHeader}
|
||||||
>
|
>
|
||||||
{recentsButtonInFooter && recentsButton}
|
{recentsButtonInFooter && recentsButton}
|
||||||
</CallFooter>
|
</CallFooter>
|
||||||
|
|||||||
Reference in New Issue
Block a user