Skip to content

Commit

Permalink
Merge pull request #3128 from spadgett/overview-stateful-set
Browse files Browse the repository at this point in the history
Bug 1713211: Correctly update overview donut when stateful set is scaled
  • Loading branch information
openshift-merge-robot authored Jun 3, 2019
2 parents 87f6c51 + e426b92 commit e156298
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/scripts/directives/overview/listRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@

var updateCurrent = function(apiObject) {
if (!apiObject ||
row.current ||
apiObject.kind === 'DeploymentConfig' ||
apiObject.kind === 'Deployment') {
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/scripts/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -14585,7 +14585,7 @@ _.isEmpty(t) || (l.imageChangeTriggers = _.filter(t, function(e) {
return "ImageChange" === e.type && _.get(e, "imageChangeParams.automatic");
}));
}, g = function(e) {
e && !l.current && "DeploymentConfig" !== e.kind && "Deployment" !== e.kind && (l.current = e);
e && "DeploymentConfig" !== e.kind && "Deployment" !== e.kind && (l.current = e);
}, v = function(e) {
l.rgv = n.objectToResourceGroupVersion(e), g(e), f(e);
};
Expand Down

0 comments on commit e156298

Please sign in to comment.