volumes: fixes for ext4

This commit is contained in:
Girish Ramakrishnan
2021-06-18 23:03:18 -07:00
parent a2f1a1feb3
commit e614703305
9 changed files with 44 additions and 36 deletions

View File

@@ -623,7 +623,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
backupConfig.mountOptions.privateKey = $scope.configureBackup.mountOptions.privateKey;
}
} else if (backupConfig.provider === 'ext4') {
backupConfig.mountOptions.diskPath = $scope.configureBackup.diskPath;
backupConfig.mountOptions.diskPath = $scope.configureBackup.mountOptions.diskPath;
}
} else if (backupConfig.provider === 'filesystem' || backupConfig.provider === 'mountpoint') {
backupConfig.backupFolder = $scope.configureBackup.backupFolder;