aboutsummaryrefslogtreecommitdiff
path: root/src/components/mobile_nav
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-07-14 15:08:04 +0300
committerShpuld Shpuldson <shp@cock.li>2020-07-14 15:08:04 +0300
commitb8c1b25397f2a07811fa381977a372595ffe3786 (patch)
tree2945eba6498a467f9919b9027ee34ff20a03b925 /src/components/mobile_nav
parent3e09a708f600b47dde831eeddb412828b38a0cf4 (diff)
remove most of reply preview and autoload related stuff
Diffstat (limited to 'src/components/mobile_nav')
-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()
}
}