diff options
Diffstat (limited to 'src/components/search/search.js')
| -rw-r--r-- | src/components/search/search.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/search/search.js b/src/components/search/search.js index 8d4212cd..877d6f30 100644 --- a/src/components/search/search.js +++ b/src/components/search/search.js @@ -83,11 +83,11 @@ const Search = { this.lastStatusFetchCount = 0 } - this.$store.dispatch('search', { q: query, resolve: true, offset: this.statusesOffset, 'type': searchType }) + this.$store.dispatch('search', { q: query, resolve: true, offset: this.statusesOffset, type: searchType }) .then(data => { this.loading = false - let oldLength = this.statuses.length + const oldLength = this.statuses.length // Always append to old results. If new results are empty, this doesn't change anything this.userIds = this.userIds.concat(map(data.accounts, 'id')) |
