We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e79aa commit c533b20Copy full SHA for c533b20
src/plugins/recent/main.js
@@ -72,7 +72,7 @@ class App {
72
const normalized = input.toLowerCase()
73
74
this.results = items
75
- .filter(item => item.display_name.toLowerCase().includes(normalized) || item.uri.toLowerCase().includes(normalized))
+ .filter(item => item.display_name.toLowerCase().includes(normalized))
76
.sort((a, b) => a.display_name.localeCompare(b.display_name))
77
.slice(0, 9)
78
0 commit comments