admin: fix handling of description in claims

This commit is contained in:
nemunaire 2020-01-30 18:48:28 +01:00
commit 5849648c70
2 changed files with 8 additions and 7 deletions

View file

@ -54,10 +54,10 @@
<div class="col-lg-5">
<div class="form-group" ng-if="whoami">
<textarea class="form-control form-control-sm" placeholder="Ajouter un commentaire" rows="1" id="ndescription" ng-model="ndescription" autofocus></textarea>
<textarea class="form-control form-control-sm" placeholder="Ajouter un commentaire" rows="1" id="ndescription" ng-model="comm.ndescription"></textarea>
</div>
<div class="form-group text-right" ng-show="claim.id && ndescription.length">
<div class="form-group text-right" ng-show="claim.id && comm.ndescription.length">
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-save" aria-hidden="true"></span> Ajouter commentaire</button>
</div>