Keep the app backup list concise

if you have even more than 10 apps, the dialog overflows and makes for bad
screenshots...
This commit is contained in:
Girish Ramakrishnan
2020-05-27 09:20:39 -07:00
parent 989a5ba685
commit 8cfae92c24

View File

@@ -24,7 +24,9 @@
</div>
<br/>
<p class="text-muted">Contains backups of {{ backupDetails.backup.contents.length }} apps:</p>
<p style="padding-left: 20px;" ng-repeat="app in backupDetails.backup.contents"><a ng-href="/#/app/{{app.id}}/backups">{{ app.label || app.fqdn }}</a></p>
<span ng-repeat="app in backupDetails.backup.contents">
<a ng-href="/#/app/{{app.id}}/backups">{{app.label || app.fqdn}}</a><span ng-hide="$last">,</span>
</span>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>