Skip to content
Snippets Groups Projects
Commit 48be4e9c authored by iamtakingiteasy's avatar iamtakingiteasy
Browse files

Fix notifications/interactions null dereference

parent 830b0008
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1707Fix interactions tab null dereference
......@@ -101,6 +101,9 @@ const Notifications = {
if (!this.scrollerRef) {
this.scrollerRef = this.$refs.root.closest('.mobile-notifications')
}
if (!this.scrollerRef) {
this.scrollerRef = this.$refs.root.closest('.column.main')
}
this.scrollerRef.addEventListener('scroll', this.updateScrollPosition)
},
unmounted () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment