Skip to content

Commit

Permalink
Merge pull request #4046 from nextcloud/fix/click-outside-ignore-list
Browse files Browse the repository at this point in the history
Fix regression of click-outside-options mixin not working since using `@vueuse`
  • Loading branch information
raimund-schluessler committed May 5, 2023
2 parents 88ac3ad + 32158cf commit d3b330e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/clickOutsideOptions/index.js
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 d3b330e

Please sign in to comment.