Skip to content

Commit

Permalink
Merge branch 'main' into robinscholz/main
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jan 3, 2023
2 parents 3f6bf6b + ae78d8b commit df5c078
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/useActiveElement/index.ts
Expand Up @@ -18,7 +18,7 @@ export function useActiveElement<T extends HTMLElement>(options: ConfigurableWin

if (window) {
useEventListener(window, 'blur', (event) => {
if (event.relatedTarget === null)
if (event.relatedTarget !== null)
return

activeElement.trigger()
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions packages/nuxt/index.ts
Expand Up @@ -14,6 +14,7 @@ const disabledFunctions = [
'useHead',
'useTitle',
'useStorage',
'useImage',
]

const packages = [
Expand Down

0 comments on commit df5c078

Please sign in to comment.