Update Hashtag.vue component, limit pagination for guests

pull/1480/head
Daniel Supernault 6 years ago
parent c7eb639a8e
commit 78d19ed847
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -133,7 +133,7 @@
}, },
infiniteLoader($state) { infiniteLoader($state) {
if(this.page > 19) { if(this.page > (this.authenticated ? 19 : 3)) {
$state.complete(); $state.complete();
return; return;
} }

Loading…
Cancel
Save