Skip to content

Commit

Permalink
fix(pipelines): force stage config rerender on refId change
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed Apr 14, 2017
1 parent e327894 commit d91f5d8
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -180,6 +180,7 @@ module.exports = angular.module('spinnaker.core.pipeline.config.stage', [
$scope.$on('pipeline-json-edited', this.selectStage);
$scope.$watch('stage.type', this.selectStage);
$scope.$watch('viewState.stageIndex', this.selectStage);
$scope.$watch('stage.refId', this.selectStage);
})
.controller('RestartStageCtrl', function($scope, $stateParams, $http, API, confirmationModalService) {
var restartStage = function () {
Expand Down

0 comments on commit d91f5d8

Please sign in to comment.