Wire up passing through initialText for room invite dialog helper method

pull/21833/head
Michael Telatynski 2021-03-24 15:36:20 +00:00
parent 11fbd081f1
commit 31dd224cc9
1 changed files with 2 additions and 1 deletions

View File

@ -49,11 +49,12 @@ export function showStartChatInviteDialog(initialText) {
);
}
export function showRoomInviteDialog(roomId) {
export function showRoomInviteDialog(roomId, initialText = "") {
// This dialog handles the room creation internally - we don't need to worry about it.
Modal.createTrackedDialog(
"Invite Users", "", InviteDialog, {
kind: KIND_INVITE,
initialText,
roomId,
},
/*className=*/null, /*isPriority=*/false, /*isStatic=*/true,