Skip to content

Commit

Permalink
Merge pull request #465 from amansinghbais/fix-ionic-7
Browse files Browse the repository at this point in the history
Fixed: remove double line from the id input in create rejection reason modal
  • Loading branch information
ravilodhi authored Mar 20, 2024
2 parents 3c9b355 + 22cade1 commit f2fa0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CreateRejectionReasonModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<ion-item>
<ion-input :label="translate('Name')" @ionBlur="setEnumId($event)" v-model="formData.enumName" />
</ion-item>
<ion-item ref="enumId">
<ion-item ref="enumId" lines="none">
<ion-input :label="translate('ID')" v-model="formData.enumId" @ionChange="validateEnumId" @ionBlur="markEnumIdTouched" :errorText="translate('ID cannot be more than 20 characters.')" />
</ion-item>
<ion-item>
Expand Down

0 comments on commit f2fa0f7

Please sign in to comment.