[FIX] No maxlength defined for custom user status (#16534)

pull/16508/head
Ashwani Yadav 5 years ago committed by GitHub
parent a05a2d5649
commit 9aaf2eab75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/user-status/client/admin/userStatusEdit.html

@ -13,7 +13,7 @@
<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>

Loading…
Cancel
Save