Skip to content

Commit

Permalink
fix: default object options
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Oct 8, 2022
1 parent b25bb75 commit 95c14a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/navigation/CommandPalette.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const props = defineProps({
},
options: {
type: Object as PropType<Partial<UseFuseOptions<Command>>>,
default: () => ({})
default: () => {}
},
autoselect: {
type: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/overlays/ContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const props = defineProps({
},
popperOptions: {
type: Object as PropType<PopperOptions>,
default: () => ({})
default: () => {}
}
})
Expand Down

1 comment on commit 95c14a4

@vercel
Copy link

@vercel vercel bot commented on 95c14a4 Oct 8, 2022

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-nuxtlabs.vercel.app
ui-git-dev-nuxtlabs.vercel.app
nuxthq-ui.vercel.app

Please sign in to comment.