Fix the text

This commit is contained in:
Girish Ramakrishnan
2018-07-24 14:38:47 -07:00
parent d6f6b4bfe5
commit 84302c1739

View File

@@ -91,14 +91,13 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
var actionScope = $scope.$new(true);
actionScope.action = '/#/backups';
Client.notify('Backup Configuration', 'Cloudron backups are disabled. Ensure the server is backed up using alternate means.', false, 'info', actionScope);
Client.notify('Backup Configuration', 'Cloudron backups are disabled. Please ensure this server is backed up using alternate means.', false, 'info', actionScope);
} else if (backupConfig.provider === 'filesystem' && !backupConfig.externalDisk) {
var actionScope = $scope.$new(true);
actionScope.action = '/#/backups';
Client.notify('Backup Configuration',
'Cloudron backups are currently on the same disk as the Cloudron server instance. This is dangerous and can lead to complete data loss if the disk fails.' +
'Please setup an external backup storage (or use server snapshots) and confirm this in backup configuration',
false /* persistent */, 'info', actionScope);
}
});