fix popovers not scrolling in mobile notifications
This commit is contained in:
parent
57d156f14a
commit
93293db038
1 changed files with 2 additions and 1 deletions
|
@ -254,7 +254,8 @@ const Popover = {
|
|||
}
|
||||
},
|
||||
mounted () {
|
||||
let scrollable = this.$refs.trigger.closest('.column.-scrollable')
|
||||
let scrollable = this.$refs.trigger.closest('.column.-scrollable') ||
|
||||
this.$refs.trigger.closest('.mobile-notifications')
|
||||
if (!scrollable) scrollable = window
|
||||
this.scrollable = scrollable
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue