Skip to content

Commit

Permalink
fix(CommandPalette): types
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Feb 17, 2023
1 parent efa9674 commit 4702a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/navigation/CommandPalette.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const commands = computed(() => props.groups.filter(group => !group.search).redu
return acc.concat(group.commands.map(command => ({ ...command, group: group.key })))
}, [] as Command[]))
const searchResults = ref({})
const searchResults = ref<{ [key: string]: any }>({})
const { results } = useFuse(query, commands, options)
Expand Down

1 comment on commit 4702a4f

@vercel
Copy link

@vercel vercel bot commented on 4702a4f Feb 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-git-dev-nuxtlabs.vercel.app
ui-nuxtlabs.vercel.app
nuxthq-ui.vercel.app

Please sign in to comment.