1
0
Fork 0

Update Hashtag.vue component, limit pagination for guests

This commit is contained in:
Daniel Supernault 2019-07-07 23:29:25 -06:00
parent c7eb639a8e
commit 78d19ed847
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

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