Merge branch 'fix-interactions-null-deref' into 'develop'

Fix interactions tab null dereference

See merge request pleroma/pleroma-fe!1707
このコミットが含まれているのは:
HJ 2022-12-21 21:08:21 +00:00
コミット cb175d3f65
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 () {