Fix notifications/interactions null dereference

このコミットが含まれているのは:
Alexander Tumin 2022-12-11 18:50:34 +03:00
コミット 48be4e9cb6
1個のファイルの変更3行の追加0行の削除

ファイルの表示

@ -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 () {