Skip to content

Commit

Permalink
refactor(Price Validation Assistant): filter only on proofs ready (up…
Browse files Browse the repository at this point in the history
…loaded via Proof add pages) (#1177)
  • Loading branch information
raphodn authored Dec 26, 2024
1 parent 4e953fd commit ff4b406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/PriceValidatorAssistant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default {
return this.appStore.user.username
},
getPriceTagsParams() {
return { proof__owner: this.username, status__isnull: true, order_by: this.currentOrder, page: this.priceTagPage }
return { proof__owner: this.username, proof__ready_for_price_tag_validation: true, status__isnull: true, order_by: this.currentOrder, page: this.priceTagPage }
},
},
mounted() {
Expand Down

0 comments on commit ff4b406

Please sign in to comment.