Fixup the disk usage gathering

This commit is contained in:
Johannes Zellner
2019-08-21 12:08:19 +02:00
parent a56f20584f
commit 6643b825ee
2 changed files with 12 additions and 6 deletions

View File

@@ -52,8 +52,8 @@
<p>This {{ disk.type }} disk contains:</p>
<ul>
<li ng-repeat="content in disk.contains">
<span ng-hide="content.app">{{ content.label }} <small class="text-muted">{{ content.usage }} GB</small></span>
<span ng-show="content.app"><b>{{ content.app.manifest.title }}</b> installed at <a href="https://{{ content.app.fqdn }}" target="_blank">{{ content.app.fqdn }}</a> <small class="text-muted">{{ content.usage }} GB</small></span>
<span ng-hide="content.app">{{ content.label }} <small class="text-muted">{{ content.usage }}</small></span>
<span ng-show="content.app"><b>{{ content.app.manifest.title }}</b> installed at <a href="https://{{ content.app.fqdn }}" target="_blank">{{ content.app.fqdn }}</a> <small class="text-muted">{{ content.usage }}</small></span>
</li>
</ul>
</div>