Skip to content

Commit

Permalink
Merge pull request #694 from amansinghbais/#676
Browse files Browse the repository at this point in the history
Fixed: tracking code label disappearing after shipping label generation of transfer order item (#676)
  • Loading branch information
ravilodhi authored Aug 5, 2024
2 parents 7cd90f2 + a6b9d98 commit 41e2ecf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/views/TransferShipmentReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
</ion-item>
<ion-item>
<ion-input :label="translate('Tracking Code')" placeholder="add tracking code" v-if="!currentShipment.trackingCode" v-model="trackingCode"></ion-input>
<p v-else slot="end">{{ currentShipment.trackingCode }}</p>
<template v-else>
<ion-label>{{ translate("Tracking Code") }}</ion-label>
<p slot="end">{{ currentShipment.trackingCode }}</p>
</template>
</ion-item>
<ion-item>
<ion-label>{{ translate('Carrier') }}</ion-label>
Expand Down

0 comments on commit 41e2ecf

Please sign in to comment.