Skip to content

Commit d507b03

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): 6f48eb058bdf5e1e8b0fe75f124530be44acd1aa
1 parent 4a5f95f commit d507b03

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

pkg/assets/bindata.go

+9-5
Original file line numberDiff line numberDiff line change
@@ -14070,9 +14070,15 @@ return _.get(e, [ "routesByService", a ]);
1407014070
e.displayRoute = i(a), e.primaryServiceRoutes = a, j();
1407114071
}), e.$watchGroup([ "service", "childServicesByParent" ], function() {
1407214072
e.service && (e.primaryService = e.service, e.childServices = _.get(e, [ "childServicesByParent", e.service.metadata.name ], []));
14073-
}), e.$watchGroup([ "service", "childServices", "alternateServices" ], function() {
14073+
}), e.$watchGroup([ "service", "childServices", "alternateServices", "deploymentConfigsByService" ], function() {
14074+
if (e.deploymentConfigsByService) {
1407414075
var a = [ e.service ].concat(e.alternateServices).concat(e.childServices);
14075-
e.allServicesInGroup = _.uniq(a, "metadata.uid");
14076+
a = _.map(a, "metadata.name");
14077+
var b = {};
14078+
_.each(a, function(a) {
14079+
_.extend(b, e.deploymentConfigsByService[a]);
14080+
}), e.allDeploymentConfigsInGroup = b;
14081+
}
1407614082
});
1407714083
}
1407814084
};
@@ -26884,8 +26890,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2688426890
"</div>\n" +
2688526891
"<div>\n" +
2688626892
"<div class=\"service-group-triggers\">\n" +
26887-
"<div ng-repeat=\"svc in allServicesInGroup track by (svc | uid)\">\n" +
26888-
"<div ng-repeat=\"dc in deploymentConfigsByService[svc.metadata.name || '']\">\n" +
26893+
"<div ng-repeat=\"dc in allDeploymentConfigsInGroup\">\n" +
2688926894
"<div row ng-repeat=\"pipeline in recentPipelinesByDC[dc.metadata.name] | orderObjectsByDate : true track by (pipeline | uid)\" class=\"build-pipeline-wrapper animate-repeat animate-slide\">\n" +
2689026895
"<build-pipeline flex build=\"pipeline\" collapse-stages-on-completion=\"true\" build-config-name-on-expanded=\"true\"></build-pipeline>\n" +
2689126896
"</div>\n" +
@@ -26894,7 +26899,6 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2689426899
"</div>\n" +
2689526900
"</div>\n" +
2689626901
"</div>\n" +
26897-
"</div>\n" +
2689826902
"\n" +
2689926903
"<service-group-notifications ng-if=\"service\"></service-group-notifications>\n" +
2690026904
"<div uib-collapse=\"collapse\" class=\"service-group-body\">\n" +

0 commit comments

Comments
 (0)