Fixes for highlights mobile (#11209)

This commit is contained in:
Gabriel Borlea 2022-04-01 13:58:03 +03:00 committed by GitHub
parent 6e0f53293e
commit 1e58a7cbec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -42,7 +42,8 @@ const title = {
const baseHighlightDialogButton = {
borderRadius: BaseTheme.shape.borderRadius,
height: BaseTheme.spacing[7],
flex: 1
flex: 1,
justifyContent: 'space-around'
};
const baseHighlightDialogLabel = {
@ -101,7 +102,7 @@ export default {
},
highlightDialogButtonsContainer: {
display: 'flex',
flexDirection: 'row'
flexDirection: 'column-reverse'
},
highlightDialogCancelButton: {
...baseHighlightDialogButton,
@ -120,8 +121,8 @@ export default {
color: BaseTheme.palette.text01
},
highlightDialogButtonsSpace: {
width: 16,
height: '100%'
height: 16,
width: '100%'
}
};

View File

@ -215,7 +215,7 @@ export async function sendMeetingHighlight(state: Object) {
const reqBody = {
meetingFqn: extractFqnFromPath(state),
sessionId: conference.sessionId,
sessionId: conference.getMeetingUniqueId(),
submitted: Date.now(),
participantId: localParticipant.jwtId,
participantName: localParticipant.name,