Skip to content

Commit

Permalink
fix: change seller polkadot address to customer polkadot address (#635)
Browse files Browse the repository at this point in the history
Co-authored-by: ciniaeleonora <ciniadelamotte@gmail.com>
  • Loading branch information
ciniiia and ciniaeleonora authored Jan 25, 2023
1 parent 975c953 commit 9786f03
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/views/Dashboard/Lab/OrderHistory/ProcessOrder/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<b>Customer Account Number</b>
</div>
<div class="text-caption grey--text text--darken-1">
{{ wallet.address }}
{{ customerAddress }}
</div>
</div>
</div>
Expand Down Expand Up @@ -159,8 +159,7 @@ export default {
data: () => ({
publicKey: "",
createdAt: "",
customerEthAddress: "",
sellerEthAddress: "",
customerAddress: "",
specimenNumber: "",
specimenStatus: "",
serviceName: "",
Expand Down Expand Up @@ -298,10 +297,7 @@ export default {
this.serviceImage = order.service_image;
this.publicKey = order.customerBoxPublicKey;
this.createdAt = order.createdAt;
this.customerEthAddress = order.customer_eth_address
? order.customer_eth_address
: "Address not set";
this.sellerEthAddress = order.seller_eth_address;
this.customerAddress = order.customerId
this.specimenNumber = order.dnaSampleTrackingId;
this.specimenStatus = order.dna_sample_status;
if (testResult) this.testResult = testResult;
Expand Down

0 comments on commit 9786f03

Please sign in to comment.