mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Let users paste text if they've already started filtering invite targets
Fixes https://github.com/vector-im/riot-web/issues/11814
This commit is contained in:
parent
95edadbfa1
commit
a138a66e77
1 changed files with 6 additions and 0 deletions
|
@ -747,6 +747,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…
Reference in a new issue