mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
If an exception is provided for a log message, display the type and message (excluding stack trace) even if withExceptionDetails=false. This helps to diagnose bugs if the live log was not saved. Closes #4843
13 lines
587 B
HTML
13 lines
587 B
HTML
<span ng-click="child_expanded = !child_expanded" ng-style="{ cursor: (data.length > 0) ? 'pointer' : '' }">
|
|
<i class="{{ResultIcon(data.length > 0 ? data.type : 'Success')}}"></i>
|
|
<span class="key">{{data.title}}</span>
|
|
<span class="value">
|
|
{{ data.length }}
|
|
<i ng-if="data.length > 0" class="fa fa-angle-{{child_expanded ? 'up': 'down'}}"></i>
|
|
</span>
|
|
</span>
|
|
<div ng-show="child_expanded && data.length > 0" class="expanded">
|
|
<ul>
|
|
<li ng-repeat="elem in data.messages track by $index" class="prewrapped-text">{{elem}}</li>
|
|
</ul>
|
|
</div>
|