Roll back resetValue changes. There's a separate issue for this.

This commit is contained in:
Michael Abashian 2017-07-13 10:12:57 -04:00
parent 5b488a41ec
commit 48bc16fb1a

View File

@ -306,7 +306,7 @@ export default [
$scope.resetValue = function(key) {
Wait('start');
var payload = {};
payload[key] = $scope.configDataResolve[key].default ? $scope.configDataResolve[key].default : null;
payload[key] = $scope.configDataResolve[key].default;
ConfigurationService.patchConfiguration(payload)
.then(function() {