Skip to content

Commit

Permalink
Improved: name for components to match file name and added slot start…
Browse files Browse the repository at this point in the history
… on icon for the picklist button on transfer list page(hotwax#925)
  • Loading branch information
ymaheshwari1 committed Jan 29, 2025
1 parent 8a47a1c commit 25bcfd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/views/TransferOrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@
<ion-footer v-if="currentOrder.statusId === 'ORDER_APPROVED'">
<ion-toolbar>
<ion-buttons slot="end">
<ion-button color="primary" fill="outline" :disabled="!hasPermission(Actions.APP_TRANSFER_ORDER_UPDATE)" @click="printTransferOrder()">
<ion-icon :icon="printOutline" />
<ion-button color="primary" fill="outline" :disabled="!hasPermission(Actions.APP_TRANSFER_ORDER_UPDATE)" @click="printTransferOrder()">
<ion-icon slot="start" :icon="printOutline" />
{{ translate('Picklist') }}
</ion-button>
<ion-button color="primary" fill="solid" :disabled="!hasPermission(Actions.APP_TRANSFER_ORDER_UPDATE) || !isEligibleForCreatingShipment()" @click="confirmCreateShipment">
Expand Down Expand Up @@ -174,7 +174,7 @@
export default defineComponent({
name: "ShipmentDetails",
name: "TransferOrderDetail",
components: {
IonBadge,
IonBackButton,
Expand Down
2 changes: 1 addition & 1 deletion src/views/TransferShipmentReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
export default defineComponent({
name: "ShipmentDetails",
name: "TransferShipmentReview",
components: {
IonBackButton,
IonButton,
Expand Down

0 comments on commit 25bcfd1

Please sign in to comment.