fix notice length 200

master
luoyang 4 years ago
parent a5680a8aa4
commit fc180b87d7

@ -49,11 +49,11 @@
<label class="control-label col-sm-2" for="title-input">* Title</label> <label class="control-label col-sm-2" for="title-input">* Title</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control" ng-model="notice.title" type="text" <input class="form-control" ng-model="notice.title" type="text"
id="title-input" required name="title" maxlength="100"> id="title-input" maxlength="200" name="title" required>
<div ng-messages="noticeForm.company_name.$error" <div ng-messages="noticeForm.company_name.$error"
ng-if="noticeForm.company_name.$dirty"> ng-if="noticeForm.company_name.$dirty">
<p class="small text-danger" ng-message="required">Required Field</p> <p class="small text-danger" ng-message="required">Required Field</p>
<p class="small text-danger" ng-message="maxlength">Less Than 100 <p class="small text-danger" ng-message="maxlength">Less Than 200
Characters(including symbols and spaces)</p> Characters(including symbols and spaces)</p>
</div> </div>
</div> </div>

Loading…
Cancel
Save