Skip to content

Commit

Permalink
fix(kubernetes): fixes load balancer refresh in server group create d…
Browse files Browse the repository at this point in the history
…ialogue (#3499)
  • Loading branch information
danielpeach committed Apr 10, 2017
1 parent 6a26ade commit ef90e50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -2,7 +2,7 @@

let angular = require('angular');

module.exports = angular.module('spinnaker.serverGroup.configure.kubernetes.loadBalancers', [
module.exports = angular.module('spinnaker.kubernetes.serverGroup.configure.loadBalancers.controller', [
require('../configuration.service.js')
])
.controller('kubernetesServerGroupLoadBalancersController', function(kubernetesServerGroupConfigurationService, infrastructureCaches, $scope) {
Expand Down
@@ -1,4 +1,4 @@
<form class="container-fluid form-horizontal" ng-controller="kubernetesServerGroupLoadBalancersController as loadBalancersController" name="form" novalidate>
<ng-form class="container-fluid form-horizontal" ng-controller="kubernetesServerGroupLoadBalancersController as loadBalancersController" name="form" novalidate>
<div class="col-md-12" ng-if="command.viewState.dirty.loadBalancers">
<div class="alert alert-warning">
<p><span class="glyphicon glyphicon-warning-sign"></span>
Expand Down Expand Up @@ -41,4 +41,4 @@
</p>
</div>
</div>
</form>
</ng-form>

0 comments on commit ef90e50

Please sign in to comment.