aboutsummaryrefslogtreecommitdiff
path: root/src/components/mobile_nav/mobile_nav.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-07-15 08:30:32 +0300
committerShpuld Shpuldson <shp@cock.li>2020-07-15 08:30:32 +0300
commit3cac26a2ac3ecd625b15eea241149e3cc4a2b9d8 (patch)
treeaeb14926cc022f00301e2f0940dc41f98e941922 /src/components/mobile_nav/mobile_nav.js
parent7859c5fe4bcd4b6a0a78a84830ccc55693f253f0 (diff)
parent297a0c1f7f1a620633b79a40e5545f786a7964f5 (diff)
Merge branch 'develop' into fix/preview-styles-polish
Diffstat (limited to 'src/components/mobile_nav/mobile_nav.js')
-rw-r--r--src/components/mobile_nav/mobile_nav.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/mobile_nav/mobile_nav.js b/src/components/mobile_nav/mobile_nav.js
index 4613d090..b2b5d264 100644
--- a/src/components/mobile_nav/mobile_nav.js
+++ b/src/components/mobile_nav/mobile_nav.js
@@ -69,7 +69,7 @@ const MobileNav = {
this.$refs.notifications.markAsSeen()
},
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
- if (this.$store.getters.mergedConfig.autoLoad && scrollTop + clientHeight >= scrollHeight) {
+ if (scrollTop + clientHeight >= scrollHeight) {
this.$refs.notifications.fetchOlderNotifications()
}
}