Fix history completion to show most frequent results first.
This commit is contained in:
parent
507c5b4f78
commit
05c7a64b6d
1 changed files with 0 additions and 1 deletions
|
@ -76,7 +76,6 @@ const getCompletions = (keyword) => {
|
|||
.sort((x, y) => x[0].visitCount < y[0].visitCount)
|
||||
.slice(0, 10)
|
||||
.map(item => item[0])
|
||||
.sort((x, y) => x.url > y.url)
|
||||
)[0];
|
||||
});
|
||||
};
|
||||
|
|
Reference in a new issue