aboutsummaryrefslogtreecommitdiff
path: root/src/components/mobile_nav/mobile_nav.js
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-07-15 09:01:40 -0500
committerMark Felder <feld@FreeBSD.org>2020-07-15 09:01:40 -0500
commit49aaf9dc57282d27ce638463b7a10ed862556350 (patch)
tree18b599b847eba9fb3ef6a5f1fb4678f70d0bf7c6 /src/components/mobile_nav/mobile_nav.js
parent8fcd37a3b9c3c66afd5bcf08b083db9eee0bd652 (diff)
parentfd94dba6d0796e946430f7e594fdfcfd6b5a460c (diff)
Merge branch 'develop' into refactor/notification_settings
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()
}
}