From: Juraj Sebin Date: Thu, 18 Jun 2015 14:16:29 +0000 (+0200) Subject: BUG 3686 - Fixed refreshing selectboxes in contract detail X-Git-Tag: release/beryllium~147 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=2614ae893e4a3bcb5975d2dfff79e39bfd32bd5a;p=groupbasedpolicy.git BUG 3686 - Fixed refreshing selectboxes in contract detail Change-Id: Ifc3d0c40a4cc81f6e219e41cab0678df02500bab Signed-off-by: Zdenko Krnac Signed-off-by: Juraj Sebin --- diff --git a/groupbasedpolicy-ui/module/src/main/resources/gbp/gbp.controller.js b/groupbasedpolicy-ui/module/src/main/resources/gbp/gbp.controller.js index d4cce73d3..bce117414 100755 --- a/groupbasedpolicy-ui/module/src/main/resources/gbp/gbp.controller.js +++ b/groupbasedpolicy-ui/module/src/main/resources/gbp/gbp.controller.js @@ -1239,6 +1239,7 @@ define(modules, function(gbp) { }); $scope.$on('GBP_CONTRACT_RELOAD',function(){ + $scope.internalView.clause = false; $scope.init(); }); @@ -1358,6 +1359,7 @@ define(modules, function(gbp) { }); $scope.$on('GBP_CONTRACT_RELOAD',function(){ + $scope.internalView.subject = false; $scope.init(); }); @@ -1602,6 +1604,7 @@ define(modules, function(gbp) { }); $scope.$on('GBP_RULE_RELOAD',function(){ + $scope.internalView.actionRef = false; $scope.init(); }); @@ -1736,6 +1739,7 @@ define(modules, function(gbp) { }); $scope.$on('GBP_RULE_RELOAD',function(){ + $scope.internalView.classifierRef = false; $scope.init(); });