Update Hashtag.vue component

pull/1480/head
Daniel Supernault 2019-07-08 20:16:09 -06:00
rodzic 38d6b89256
commit 16b93eb315
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -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++;
});
},