Skip to content

Commit 4fc2ecb

Browse files
committed
Include conditional style to set spacing for ui-select
Fixes #1309
1 parent 8d4deed commit 4fc2ecb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/views/browse/pod.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ <h3>Container {{container.name}} Environment Variables</h3>
8989
context="projectContext"
9090
options="logOptions"
9191
empty="logEmpty"
92-
run="logCanRun">
92+
run="logCanRun"
93+
ng-class="{'log-viewer-select': pod.spec.containers.length > 1}">
9394

9495
<span class="container-details">
9596
<label for="selectLogContainer">Container:</label>

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3320,7 +3320,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
33203320
"</uib-tab>\n" +
33213321
"<uib-tab active=\"selectedTab.logs\" ng-if=\"'pods/log' | canI : 'get'\">\n" +
33223322
"<uib-tab-heading>Logs</uib-tab-heading>\n" +
3323-
"<log-viewer ng-if=\"selectedTab.logs\" follow-affix-top=\"390\" object=\"pod\" context=\"projectContext\" options=\"logOptions\" empty=\"logEmpty\" run=\"logCanRun\">\n" +
3323+
"<log-viewer ng-if=\"selectedTab.logs\" follow-affix-top=\"390\" object=\"pod\" context=\"projectContext\" options=\"logOptions\" empty=\"logEmpty\" run=\"logCanRun\" ng-class=\"{'log-viewer-select': pod.spec.containers.length > 1}\">\n" +
33243324
"<span class=\"container-details\">\n" +
33253325
"<label for=\"selectLogContainer\">Container:</label>\n" +
33263326
"<span ng-if=\"pod.spec.containers.length === 1\">\n" +

0 commit comments

Comments
 (0)