fix: give content match a lower score (#4499)

This commit is contained in:
Peng Xiao
2023-09-26 11:15:40 +08:00
committed by GitHub
parent 1bdc402b7b
commit eb728f7ef2
2 changed files with 20 additions and 5 deletions

View File

@@ -365,8 +365,8 @@ const Command = React.forwardRef<HTMLDivElement, CommandProps>(
// Sort the items
getValidItems()
.sort((a, b) => {
const valueA = a.getAttribute(VALUE_ATTR);
const valueB = b.getAttribute(VALUE_ATTR);
const valueA = a.getAttribute('id');
const valueB = b.getAttribute('id');
return (scores.get(valueB) ?? 0) - (scores.get(valueA) ?? 0);
})
.forEach(item => {