mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
Merge pull request #3970 from matrix-org/travis/user-lists/fix-paste
Let users paste text if they've already started filtering invite targets
This commit is contained in:
commit
45735d5ae3
@ -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();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user