Skip to content

Commit

Permalink
fix(clickOutsideOptions): Regression since switching to @vueuse as …
Browse files Browse the repository at this point in the history
…the option is now called `ignore` instead of `ignored`

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed May 5, 2023
1 parent 877042d commit 32158cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/clickOutsideOptions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default {
? this.excludeClickOutsideClasses
: [this.excludeClickOutsideClasses]

return { ignored: [...excludedQuerySelectors, ...excludeClickOutsideClasses.map(cls => `.${cls}`)] }
return { ignore: [...excludedQuerySelectors, ...excludeClickOutsideClasses.map(cls => `.${cls}`)] }
},
},
}

0 comments on commit 32158cf

Please sign in to comment.