From 16b93eb31502e6337cbe19e166ef44d89481276b Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 8 Jul 2019 20:16:09 -0600 Subject: [PATCH] Update Hashtag.vue component --- resources/assets/js/components/Hashtag.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/components/Hashtag.vue b/resources/assets/js/components/Hashtag.vue index 7ba4d3715..9d9c5fcd8 100644 --- a/resources/assets/js/components/Hashtag.vue +++ b/resources/assets/js/components/Hashtag.vue @@ -115,7 +115,8 @@ getResults() { axios.get('/api/v2/discover/tag', { params: { - hashtag: this.hashtag + hashtag: this.hashtag, + page: this.page } }).then(res => { let data = res.data; @@ -129,6 +130,7 @@ //this.top = tags.slice(6, 9); this.loaded = true; this.following = data.follows; + this.page++; }); },