You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-14 19:02:33 +03:00
Revert unintentional change
This commit is contained in:
@@ -191,7 +191,6 @@ module.exports = React.createClass({
|
||||
this.queryChangedDebouncer = setTimeout(() => {
|
||||
// Only do search if there is something to search
|
||||
if (query.length > 0 && query != '@') {
|
||||
performance.mark('start');
|
||||
// Weighted keys prefer to match userIds when first char is @
|
||||
this._fuse.options.keys = [{
|
||||
name: 'displayName',
|
||||
@@ -200,7 +199,6 @@ module.exports = React.createClass({
|
||||
name: 'userId',
|
||||
weight: query[0] === '@' ? 0.9 : 0.1,
|
||||
}];
|
||||
performance.mark('middle');
|
||||
queryList = this._fuse.search(query).map((user) => {
|
||||
// Return objects, structure of which is defined
|
||||
// by InviteAddressType
|
||||
@@ -212,9 +210,6 @@ module.exports = React.createClass({
|
||||
isKnown: true,
|
||||
}
|
||||
});
|
||||
performance.mark('end');
|
||||
performance.measure('setopts', 'start', 'middle');
|
||||
performance.measure('search', 'middle', 'end');
|
||||
|
||||
// If the query is a valid address, add an entry for that
|
||||
// This is important, otherwise there's no way to invite
|
||||
|
||||
Reference in New Issue
Block a user