-
Notifications
You must be signed in to change notification settings - Fork 7.1k
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
Fixes for highlights mobile #11209
Fixes for highlights mobile #11209
Conversation
@saghul added some screenshots |
Buttons should be stacked vertically, that's the common mobile UX pattern. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(switching to request changes to we adapt the UI)
flex: 1, | ||
flexDirection: 'row', | ||
justifyContent: 'center', | ||
alignItems: 'center' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
think you could replace:
flexDirection: 'row', justifyContent: 'center', alignItems: 'center'
with : justifyContent: 'space-around'
060e845
to
303359b
Compare
d575abd
to
c5a3a4b
Compare
fix(highlights): switch buttons order fix(highlights): remove unused logger import
c5a3a4b
to
73935d8
Compare
@@ -215,7 +215,7 @@ export async function sendMeetingHighlight(state: Object) { | |||
|
|||
const reqBody = { | |||
meetingFqn: extractFqnFromPath(state), | |||
sessionId: conference.sessionId, | |||
sessionId: conference.sessionId || conference.room.meetingId, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@saghul is this a good way to get the sessionId on mobile?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sessionId: conference.sessionId || conference.room.meetingId, | |
sessionId: conference.getMeetingUniqueId(), |
Use stacked buttons

Before
After

Fix get sessionId on mobile