Skip to content

Commit f6b4261

Browse files
author
OpenShift Bot
authored
Merge pull request #1366 from spadgett/no-metrics-hide-summary
Merged by openshift-bot
2 parents d87ad15 + 35d1f3d commit f6b4261

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/overview/_list-row-content.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h3>
6161
</div>
6262
</div>
6363
<div ng-if="row.current && !row.isDeploymentInProgress() && !row.expanded" class="list-pf-details">
64-
<div ng-if="row.state.showMetrics && row.state.breakpoint === 'md' || row.state.breakpoint === 'lg'" class="truncate metrics-collapsed">
64+
<div ng-if="row.state.showMetrics && (row.state.breakpoint === 'md' || row.state.breakpoint === 'lg')" class="truncate metrics-collapsed">
6565
<div ng-if="row.apiObject.kind === 'Pod'">
6666
<metrics-summary
6767
pods="[row.apiObject]"

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12074,7 +12074,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1207412074
"</div>\n" +
1207512075
"</div>\n" +
1207612076
"<div ng-if=\"row.current && !row.isDeploymentInProgress() && !row.expanded\" class=\"list-pf-details\">\n" +
12077-
"<div ng-if=\"row.state.showMetrics && row.state.breakpoint === 'md' || row.state.breakpoint === 'lg'\" class=\"truncate metrics-collapsed\">\n" +
12077+
"<div ng-if=\"row.state.showMetrics && (row.state.breakpoint === 'md' || row.state.breakpoint === 'lg')\" class=\"truncate metrics-collapsed\">\n" +
1207812078
"<div ng-if=\"row.apiObject.kind === 'Pod'\">\n" +
1207912079
"<metrics-summary pods=\"[row.apiObject]\" containers=\"row.apiObject.spec.containers\">\n" +
1208012080
"</metrics-summary>\n" +

0 commit comments

Comments
 (0)