Merge "The name is too long and will exceed the page range"

This commit is contained in:
Zuul 2019-02-04 05:53:31 +00:00 committed by Gerrit Code Review
commit bdbf781441
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
</h3>
</div>
<div class="modal-body clearfix">
<p ng-bind="::modalCtrl.context.body"></p>
<p class="word-wrap" ng-bind="::modalCtrl.context.body"></p>
</div>
<div class="modal-footer">
<button class="btn btn-default"

View File

@ -1,6 +1,6 @@
<div ng-repeat="toast in toast.get()">
<div class="alert alert-{$ ::toast.type $}">
<a class="close" ng-click="toast.cancel($index)"><span class="fa fa-times"></span></a>
<div><strong>{$ toast.typeMsg $}: </strong>{$ toast.msg $}</div>
<div class="word-wrap"><strong>{$ toast.typeMsg $}: </strong>{$ toast.msg $}</div>
</div>
</div>