Skip to content

Commit

Permalink
Merge pull request #268 from hotwax/#114_security_group_description
Browse files Browse the repository at this point in the history
Improved: Added textarea counter to show character count progress while entering description (#114).
  • Loading branch information
ravilodhi authored Sep 3, 2024
2 parents 586c76f + 5686a17 commit 453c703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/CreateSecurityGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<ion-item ref="groupId" lines="none">
<ion-input :label="translate('Internal ID')" label-placement="floating" @ionChange="validateGroupId" @ionBlur="markGroupIdTouched" v-model="formData.groupId" :errorText="translate('Internal ID cannot be more than 20 characters.')" />
</ion-item>
<ion-item>
<ion-textarea :label="translate('Description')" label-placement="floating" v-model="formData.description" />
<ion-item lines="none">
<ion-textarea :label="translate('Description')" label-placement="floating" v-model="formData.description" :counter="true" :maxlength="255"/>
</ion-item>
</ion-list>

Expand Down

0 comments on commit 453c703

Please sign in to comment.