You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-19 20:23:18 +03:00
post-merge fix
This commit is contained in:
@ -174,7 +174,7 @@ module.exports = createReactClass({
|
||||
} else {
|
||||
this._addAddressesToList([textInput]);
|
||||
}
|
||||
} else if (e.key === Key.COMMA || e.key === Key.TAB) {
|
||||
} else if (textInput && (e.key === Key.COMMA || e.key === Key.TAB)) {
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
this._addAddressesToList([textInput]);
|
||||
|
Reference in New Issue
Block a user