remove backup default comment

This commit is contained in:
Girish Ramakrishnan
2018-08-13 22:20:17 -07:00
parent 6c574ead94
commit 0c066fafa2

View File

@@ -45,7 +45,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
$scope.retentionTimes = [
{ name: '2 days', value: 2 * 24 * 60 * 60 },
{ name: '1 week', value: 7 * 24 * 60 * 60}, // the default
{ name: '1 week', value: 7 * 24 * 60 * 60},
{ name: '1 month', value: 30 * 24 * 60 * 60},
{ name: 'Forever', value: -1 }
];