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.
2 parents 88c4660 + d6efa94 commit 73c2ab8Copy full SHA for 73c2ab8
components/cmd/CommandMenu.vue
@@ -861,7 +861,7 @@ const debouncedSearch = useDebounceFn(async (e) => {
861
type: "callback",
862
icon: filteredResults[i].type,
863
title: filteredResults[i].result.hash ? filteredResults[i].result.hash : filteredResults[i].result.name,
864
- subtitle: filteredResults[i].type.charAt(i).toUpperCase() + filteredResults[i].type.slice(1),
+ subtitle: filteredResults[i].type.charAt(0).toUpperCase() + filteredResults[i].type.slice(1),
865
runText: "Open",
866
callback: () => {
867
switch (filteredResults[i].type) {
0 commit comments