-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Room UI Redesign: Leave Room Modal #3255
Conversation
@@ -1306,7 +1306,7 @@ class UIRoot extends Component { | |||
label: "Create Room", | |||
icon: HomeIcon, | |||
onClick: () => | |||
this.showNonHistoriedDialog(LeaveRoomDialog, { | |||
this.showNonHistoriedDialog(LeaveRoomModal, { |
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.
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.
Hmm, that would break the flow of things like Chamberlain's lighthouse experience though. I don't know that I agree with this, but I'd be happy to follow up discussion in another issue.
}, | ||
"create-room-confirm": { | ||
id: "leave-room-dialog.create-room.confirm", | ||
defaultMessage: "Leave Room" |
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.
The title and confirmation button text for this case are awkward. I know this is taken from what we already have, but it seems like the button text or title should be something like "Create Room" or possibly "Leave and Create New Room"
This PR migrates the Leave Room Modal to the new design. It is dependent on #3245