Skip to content

Commit

Permalink
fix(pipeline): Not 'Use default' should be empty string (#7922)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
alanmquach and mergify[bot] authored Feb 20, 2020
1 parent fc7bf1f commit 99765ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ module(CORE_PIPELINE_CONFIG_STAGES_PIPELINE_PIPELINESTAGE, [])
delete $scope.userSuppliedParameters[parameter];
delete $scope.stage.pipelineParameters[parameter];
} else if ($scope.userSuppliedParameters[parameter]) {
$scope.stage.pipelineParameters[parameter] = $scope.userSuppliedParameters[parameter];
$scope.stage.pipelineParameters[parameter] = $scope.userSuppliedParameters[parameter] || '';
}
};

Expand Down

0 comments on commit 99765ef

Please sign in to comment.