Skip to content

Commit

Permalink
bump(github.com/openshift/origin-web-console): 09e388accea5f3412c2f39…
Browse files Browse the repository at this point in the history
…581f23e779c72b5214
  • Loading branch information
OpenShift Bot committed Jul 7, 2017
1 parent 778ab8d commit 349768c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkg/assets/bindata.go
Original file line number Diff line number Diff line change
Expand Up @@ -12693,14 +12693,14 @@ mini:"=?"
templateUrl:"views/directives/pod-donut.html",
link:function(a, f) {
function h() {
if (!a.mini) {
var b, c = _.reject(a.pods, {
var b = _.reject(a.pods, {
status:{
phase:"Failed"
}
}), d = _.size(c);
b = angular.isNumber(a.desired) && a.desired !== d ? "scaling to " + a.desired + "..." :1 === d ? "pod" :"pods", a.idled ? g.updateDonutCenterText(f[0], "Idle") :g.updateDonutCenterText(f[0], d, b);
}
}), c = _.size(b);
if (a.mini) return void (a.total = c);
var d;
d = angular.isNumber(a.desired) && a.desired !== c ? "scaling to " + a.desired + "..." :1 === c ? "pod" :"pods", a.idled ? g.updateDonutCenterText(f[0], "Idle") :g.updateDonutCenterText(f[0], c, d);
}
function i(b) {
var c = {
Expand Down Expand Up @@ -24737,9 +24737,9 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
"<div ng-attr-id=\"{{chartId}}\" class=\"pod-donut\" ng-class=\"{ mini: mini }\"></div>\n" +
"<div ng-if=\"mini\" class=\"donut-mini-text\">\n" +
"<span ng-if=\"!idled\">\n" +
"{{pods | hashSize}}\n" +
"<span ng-if=\"(pods | hashSize) === 1\">pod</span>\n" +
"<span ng-if=\"(pods | hashSize) !== 1\">pods</span>\n" +
"{{total}}\n" +
"<span ng-if=\"total === 1\">pod</span>\n" +
"<span ng-if=\"total !== 1\">pods</span>\n" +
"</span>\n" +
"<span ng-if=\"idled\">\n" +
"Idle\n" +
Expand Down

0 comments on commit 349768c

Please sign in to comment.