Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Minimized calling cell #17697

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,6 @@
"videoCallvideoInputCamera": "Camera",
"videoSpeakersTabAll": "All ({{count}})",
"videoSpeakersTabSpeakers": "Speakers",
"viewingInAnotherWindow": "Viewing in another window",
"warningCallIssues": "This version of {{brandName}} can not participate in the call. Please use",
"warningCallQualityPoor": "Poor connection",
"warningCallUnsupportedIncoming": "{{user}} is calling. Your browser doesn’t support calls.",
Expand Down
21 changes: 11 additions & 10 deletions src/script/components/Conversation/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -490,16 +490,17 @@ export const Conversation = ({
}

return (
<CallingCell
key={conversation.id}
classifiedDomains={classifiedDomains}
call={call}
callActions={callingViewModel.callActions}
callingRepository={callingRepository}
pushToTalkKey={callingViewModel.propertiesRepository.getPreference(
PROPERTIES_TYPE.CALL.PUSH_TO_TALK_KEY,
)}
/>
<div className="calling-cell" key={conversation.id}>
<CallingCell
classifiedDomains={classifiedDomains}
call={call}
callActions={callingViewModel.callActions}
callingRepository={callingRepository}
pushToTalkKey={callingViewModel.propertiesRepository.getPreference(
PROPERTIES_TYPE.CALL.PUSH_TO_TALK_KEY,
)}
/>
</div>
);
})}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const createProps = async () => {
pushToTalkKey: null,
conversation,
hasAccessToCamera: true,
isSelfVerified: true,
teamState: mockTeamState,
videoGrid: {grid: [], thumbnail: undefined},
} as CallingCellProps;
Expand Down
Loading
Loading