Skip to content

Commit

Permalink
[FIX] No maxlength defined for custom user status (#16534)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwaniYDV authored Apr 14, 2020
1 parent a05a2d5 commit 9aaf2ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/user-status/client/admin/userStatusEdit.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3>{{_ "Custom_User_Status_Add"}}</h3>
<label class="rc-input__label">
<div class="rc-input__title">{{_ "Name"}}</div>
<div class="rc-input__wrapper">
<input id="name" type="text" value="{{userStatus.name}}" class="rc-input__element" placeholder="{{_ " Name "}}" autocomplete="off">
<input id="name" type="text" maxlength="120" value="{{userStatus.name}}" class="rc-input__element" placeholder="{{_ " Name "}}" autocomplete="off">
</div>
</label>
</div>
Expand Down

0 comments on commit 9aaf2ea

Please sign in to comment.