diff --git a/src/components/views/dialogs/InviteDialog.js b/src/components/views/dialogs/InviteDialog.js index bad5f282e1..f05f0477ee 100644 --- a/src/components/views/dialogs/InviteDialog.js +++ b/src/components/views/dialogs/InviteDialog.js @@ -758,6 +758,12 @@ export default class InviteDialog extends React.PureComponent { }; _onPaste = async (e) => { + if (this.state.filterText) { + // if the user has already typed something, just let them + // paste normally. + return; + } + // Prevent the text being pasted into the textarea e.preventDefault();