Fix #2916 Error log Message Overflow (#2919)

This commit is contained in:
Abhay Chawla 2018-05-21 13:40:42 +05:30 committed by Raunak Sett
parent 6befa92235
commit 30cfe04123
4 changed files with 10 additions and 3 deletions

View File

@ -526,4 +526,8 @@ span.required {
}
}
}
}
.pre-wrap {
white-space: pre-wrap;
}

View File

@ -11902,6 +11902,9 @@ span.required {
float: right;
}
.pre-wrap {
white-space: pre-wrap; }
/* @import this file */
/* line 2, ../styles-dev/main/components/_inputs.scss */
.form-control {

View File

@ -64,7 +64,7 @@
<h3 class="bolder">{{'label.heading.errorlog' | translate}}</h3>
</div>
<div class="modal-body">
<p>{{error}}</p>
<pre class="pre-wrap">{{error}}</pre>
</div>
<div class="modal-footer">
<button class="btn btn-warning" ng-click="cancel()">{{'label.button.close' | translate}}</button>

View File

@ -53,7 +53,7 @@
<h3 class="bolder">{{'label.heading.errorlog' | translate}}</h3>
</div>
<div class="modal-body">
<p>{{error}}</p>
<pre class="pre-wrap">{{error}}</pre>
</div>
<div class="modal-footer">
<button class="btn btn-warning" ng-click="cancel()">{{'label.button.close' | translate}}</button>