Skip to content

Commit

Permalink
Fixed some more slots
Browse files Browse the repository at this point in the history
  • Loading branch information
dt2patel authored Nov 8, 2023
1 parent c53772e commit 2a37765
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/ShippingDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
<ion-label>
{{ currentOrder.trackingCode }}
</ion-label>
<ion-button fill="clear" @click="printShippingLabel(currentOrder)">
<ion-icon :icon="openOutline" slot="end" />
<ion-button slot="end" fill="clear" @click="printShippingLabel(currentOrder)">
<ion-icon :icon="openOutline" slot="icon-only" />
</ion-button>
</ion-item>
<ion-item lines="none" v-if="currentOrder.missingLabelImage || (!currentOrder.trackingCode && currentOrder.shipmentPackages && ['PICKITEM_PICKED', 'PICKITEM_COMPLETED'].includes(currentOrder?.items[0]?.picklistItemStatusId))">
Expand All @@ -37,7 +37,7 @@
<ion-label v-else>
{{ translate('Missing shipping label') }}
</ion-label>
<ion-button fill="clear" @click="retryShippingLabel(currentOrder)">
<ion-button fill="clear" slot="end" @click="retryShippingLabel(currentOrder)">
<ion-icon :icon="refreshSharp" slot="icon-only" />
</ion-button>
</ion-item>
Expand Down

0 comments on commit 2a37765

Please sign in to comment.