Skip to content

Commit

Permalink
Remove query filter
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Jan 10, 2024
1 parent 6e23441 commit 4831cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ProductList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default {
getProducts() {
this.loading = true
this.productPage += 1
return api.getProducts({ page: this.productPage, unique_scans_n__gte: 1, order_by: '-unique_scans_n' })
return api.getProducts({ page: this.productPage, order_by: '-unique_scans_n' })
.then((data) => {
this.productList.push(...data.items)
this.productTotal = data.total
Expand Down

0 comments on commit 4831cf1

Please sign in to comment.