You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-06-26 04:01:04 +03:00
Added pass through of roomId
This commit is contained in:
@ -519,12 +519,13 @@ module.exports = React.createClass({
|
||||
});
|
||||
},
|
||||
|
||||
_invite: function() {
|
||||
_invite: function(roomId) {
|
||||
var ChatInviteDialog = sdk.getComponent("dialogs.ChatInviteDialog");
|
||||
Modal.createDialog(ChatInviteDialog, {
|
||||
title: "Invite new room members",
|
||||
button: "Send Invites",
|
||||
description: "Who would you like to add to this room?"
|
||||
description: "Who would you like to add to this room?",
|
||||
roomId: roomId,
|
||||
});
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user