mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-16 18:01:57 +02:00
Merge pull request #1179 from matrix-org/luke/fix-query-matcher-empty-query
Don't try to match with an empty query string
This commit is contained in:
commit
89d0ec4de8
@ -86,6 +86,9 @@ export default class QueryMatcher {
|
|||||||
if (this.options.shouldMatchWordsOnly) {
|
if (this.options.shouldMatchWordsOnly) {
|
||||||
query = query.replace(/[^\w]/g, '');
|
query = query.replace(/[^\w]/g, '');
|
||||||
}
|
}
|
||||||
|
if (query.length === 0) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
const results = [];
|
const results = [];
|
||||||
this.keyMap.keys.forEach((key) => {
|
this.keyMap.keys.forEach((key) => {
|
||||||
let resultKey = key.toLowerCase();
|
let resultKey = key.toLowerCase();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user