소스 검색

Update Hashtag.vue component, limit pagination for guests

Daniel Supernault 6 년 전
부모
커밋
78d19ed847
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      resources/assets/js/components/Hashtag.vue

+ 1 - 1
resources/assets/js/components/Hashtag.vue

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