Add backup details dialog

When a backup contains many apps, displaying them in the main backup
list is confusing and hides most apps
This commit is contained in:
Johannes Zellner
2020-05-22 13:48:26 +02:00
parent fb5a789f55
commit 034b2b2ddd
2 changed files with 49 additions and 12 deletions

View File

@@ -272,6 +272,15 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
download('cloudron_backup.json', JSON.stringify(tmp));
};
$scope.backupDetails = {
backup: null,
show: function (backup) {
$scope.backupDetails.backup = backup;
$('#backupDetailsModal').modal('show');
}
};
$scope.configureScheduleAndRetention = {
busy: false,
error: {},