Skip to content

Commit

Permalink
Merge pull request #320 from ymaheshwari1/#294
Browse files Browse the repository at this point in the history
Fixed: the issue of line after button by improving the html structure(#294)
ravilodhi authored Feb 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 150a48d + 61db989 commit ccaa199
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/PurchaseOrderDetail.vue
Original file line number Diff line number Diff line change
@@ -148,10 +148,10 @@

<ion-footer>
<ion-toolbar>
<ion-item slot="end">
<ion-button :disabled="!hasPermission(Actions.APP_SHIPMENT_UPDATE)" fill="outline" class="ion-margin-end" @click="closePO">{{ translate("Receive And Close") }}</ion-button>
<ion-button :disabled="!hasPermission(Actions.APP_SHIPMENT_UPDATE) || !isEligibileForCreatingShipment()" @click="savePODetails">{{ translate("Receive") }}</ion-button>
</ion-item>
<ion-buttons slot="end">
<ion-button fill="outline" size="small" color="primary" :disabled="!hasPermission(Actions.APP_SHIPMENT_UPDATE)" class="ion-margin-end" @click="closePO">{{ translate("Receive And Close") }}</ion-button>
<ion-button fill="solid" size="small" color="primary" :disabled="!hasPermission(Actions.APP_SHIPMENT_UPDATE) || !isEligibileForCreatingShipment()" @click="savePODetails">{{ translate("Receive") }}</ion-button>
</ion-buttons>
</ion-toolbar>
</ion-footer>
</ion-page>

0 comments on commit ccaa199

Please sign in to comment.