Fixes for highlights mobile (#11209)
This commit is contained in:
parent
6e0f53293e
commit
1e58a7cbec
|
@ -42,7 +42,8 @@ const title = {
|
||||||
const baseHighlightDialogButton = {
|
const baseHighlightDialogButton = {
|
||||||
borderRadius: BaseTheme.shape.borderRadius,
|
borderRadius: BaseTheme.shape.borderRadius,
|
||||||
height: BaseTheme.spacing[7],
|
height: BaseTheme.spacing[7],
|
||||||
flex: 1
|
flex: 1,
|
||||||
|
justifyContent: 'space-around'
|
||||||
};
|
};
|
||||||
|
|
||||||
const baseHighlightDialogLabel = {
|
const baseHighlightDialogLabel = {
|
||||||
|
@ -101,7 +102,7 @@ export default {
|
||||||
},
|
},
|
||||||
highlightDialogButtonsContainer: {
|
highlightDialogButtonsContainer: {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexDirection: 'row'
|
flexDirection: 'column-reverse'
|
||||||
},
|
},
|
||||||
highlightDialogCancelButton: {
|
highlightDialogCancelButton: {
|
||||||
...baseHighlightDialogButton,
|
...baseHighlightDialogButton,
|
||||||
|
@ -120,8 +121,8 @@ export default {
|
||||||
color: BaseTheme.palette.text01
|
color: BaseTheme.palette.text01
|
||||||
},
|
},
|
||||||
highlightDialogButtonsSpace: {
|
highlightDialogButtonsSpace: {
|
||||||
width: 16,
|
height: 16,
|
||||||
height: '100%'
|
width: '100%'
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -215,7 +215,7 @@ export async function sendMeetingHighlight(state: Object) {
|
||||||
|
|
||||||
const reqBody = {
|
const reqBody = {
|
||||||
meetingFqn: extractFqnFromPath(state),
|
meetingFqn: extractFqnFromPath(state),
|
||||||
sessionId: conference.sessionId,
|
sessionId: conference.getMeetingUniqueId(),
|
||||||
submitted: Date.now(),
|
submitted: Date.now(),
|
||||||
participantId: localParticipant.jwtId,
|
participantId: localParticipant.jwtId,
|
||||||
participantName: localParticipant.name,
|
participantName: localParticipant.name,
|
||||||
|
|
Loading…
Reference in New Issue