aboutsummaryrefslogtreecommitdiff
path: root/src/components/mobile_nav/mobile_nav.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2020-07-14 12:47:10 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2020-07-14 12:47:10 +0000
commit6fe075103712ea7b335d2a7b9d02da1316d4a4fd (patch)
tree1353fa7d7a8bfe8aecb38193b4f970325e989dff /src/components/mobile_nav/mobile_nav.js
parent3e09a708f600b47dde831eeddb412828b38a0cf4 (diff)
parent97a01b057de79fdd5e8a9a19c99fcac571c5e78f (diff)
Merge branch 'cleanup/remove-stupid-optns' into 'develop'
Cleanup/remove stupid options See merge request pleroma/pleroma-fe!1187
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()
}
}