Fix issue where popperjs spammed console warnings

```
`preventOverflow` modifier is required by `hide` modifier in order to work, be sure to include it before `hide`!
```

- Needed `hide` - https://popper.js.org/docs/v2/modifiers/hide/
This commit is contained in:
Richard Cox 2023-09-12 11:10:42 +01:00
parent 2c3801e6e3
commit f729e001c7
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ export default {
return {
content: this.shown ? null : item,
placement: 'right',
popperOptions: { modifiers: { preventOverflow: { enabled: false } } }
popperOptions: { modifiers: { preventOverflow: { enabled: false }, hide: { enabled: false } } }
};
} else {
return { content: undefined };