@@ -3948,17 +3948,15 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
3948
3948
"</span>\n" +
3949
3949
"</dd>\n" +
3950
3950
"</dl>\n" +
3951
- "<h3>\n" +
3952
- "Traffic\n" +
3953
- "</h3>\n" +
3954
- "<div class=\"table-responsive\">\n" +
3951
+ "<h3>Traffic</h3>\n" +
3952
+ "<div>\n" +
3955
3953
"<traffic-table ports-by-route=\"portsByRoute\" routes=\"routesForService\" services=\"services\" show-node-ports=\"showNodePorts\" custom-name-header=\"'Route'\"></traffic-table>\n" +
3956
3954
"</div>\n" +
3957
3955
"<div style=\"margin:-10px 0 10px 0\">\n" +
3958
3956
"Learn more about <a ng-href=\"{{'route-types' | helpLink}}\" target=\"_blank\">routes</a> and <a ng-href=\"{{'services' | helpLink}}\" target=\"_blank\">services</a>\n" +
3959
3957
"</div>\n" +
3960
3958
"<h3>Pods</h3>\n" +
3961
- "<div class=\"table-responsive\" >\n" +
3959
+ "<div>\n" +
3962
3960
"<pods-table pods=\"podsForService\" active-pods=\"podsWithEndpoints\" custom-name-header=\"'Pod'\" pod-failure-reasons=\"podFailureReasons\"></pods-table>\n" +
3963
3961
"</div>\n" +
3964
3962
"<annotations annotations=\"service.metadata.annotations\"></annotations>\n" +
@@ -8242,9 +8240,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
8242
8240
"<tbody ng-if=\"(portsByRoute | hashSize) == 0\">\n" +
8243
8241
"<tr><td colspan=\"7\"><em>{{emptyMessage || 'No routes or ports to show'}}</em></td></tr>\n" +
8244
8242
"</tbody>\n" +
8245
- "<tbody ng-if=\"(portsByRoute | hashSize) > 0\">\n" +
8246
- "<tr ng-repeat-start =\"(routeName,ports) in portsByRoute \" style =\"display:none\"></tr >\n" +
8247
- "<tr ng-repeat=\"port in ports\" ng-if=\"routeName !== ''\" >\n" +
8243
+ "<tbody ng-if=\"(portsByRoute | hashSize) > 0\" ng-repeat-start=\"(routeName,ports) in portsByRoute\" style=\"display:none\"></tbody >\n" +
8244
+ "<tbody ng-repeat=\"port in ports \" ng-if =\"routeName !== ''\" >\n" +
8245
+ "<tr>\n" +
8248
8246
"<td data-title=\"{{customNameHeader || 'Route'}}{{ showNodePorts ? ' / Node Port' : '' }}\">\n" +
8249
8247
"<a href=\"{{routes[routeName] | navigateResourceURL}}\">{{routes[routeName].metadata.name}}</a>\n" +
8250
8248
"<route-warnings ng-if=\"routes[routeName].spec.to.kind !== 'Service' || services\" route=\"routes[routeName]\" service=\"services[routes[routeName].spec.to.name]\">\n" +
@@ -8253,12 +8251,12 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
8253
8251
"<span ng-if=\"port.nodePort\"> / {{port.nodePort}}</span>\n" +
8254
8252
"</span>\n" +
8255
8253
"</td>\n" +
8256
- "<td role=\"presentation\" class=\"text-muted\">→ </td>\n" +
8254
+ "<td role=\"presentation\" class=\"text-muted arrow \"></td>\n" +
8257
8255
"<td data-title=\"Service Port\">\n" +
8258
8256
"{{port.port}}/{{port.protocol}}\n" +
8259
8257
"<span ng-if=\"port.name\">({{port.name}})</span>\n" +
8260
8258
"</td>\n" +
8261
- "<td role=\"presentation\" class=\"text-muted\">→ </td>\n" +
8259
+ "<td role=\"presentation\" class=\"text-muted arrow \"></td>\n" +
8262
8260
"<td data-title=\"Target Port\">\n" +
8263
8261
"{{port.targetPort}}\n" +
8264
8262
"</td>\n" +
@@ -8280,18 +8278,20 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
8280
8278
"<span ng-if=\"!routes[routeName].spec.tls.termination\"> </span>\n" +
8281
8279
"</td>\n" +
8282
8280
"</tr>\n" +
8283
- "<tr ng-repeat-end style=\"display:none\"></tr>\n" +
8284
- "<tr ng-repeat=\"port in portsByRoute['']\">\n" +
8281
+ "</tbody>\n" +
8282
+ "<tbody ng-repeat-end style=\"display:none\"></tbody>\n" +
8283
+ "<tbody ng-repeat=\"port in portsByRoute['']\">\n" +
8284
+ "<tr>\n" +
8285
8285
"<td data-title=\"{{customNameHeader || 'Route'}}{{ showNodePorts ? ' / Node Port' : '' }}\">\n" +
8286
8286
"<span ng-if=\"!port.nodePort\" class=\"text-muted\">none</span>\n" +
8287
8287
"<span ng-if=\"port.nodePort\">{{port.nodePort}}</span>\n" +
8288
8288
"</td>\n" +
8289
- "<td role=\"presentation\" class=\"text-muted\">→ </td>\n" +
8289
+ "<td role=\"presentation\" class=\"text-muted arrow \"></td>\n" +
8290
8290
"<td data-title=\"Service Port\">\n" +
8291
8291
"{{port.port}}/{{port.protocol}}\n" +
8292
8292
"<span ng-if=\"port.name\">({{port.name}})</span>\n" +
8293
8293
"</td>\n" +
8294
- "<td role=\"presentation\" class=\"text-muted\">→ </td>\n" +
8294
+ "<td role=\"presentation\" class=\"text-muted arrow \"></td>\n" +
8295
8295
"<td data-title=\"Target Port\">\n" +
8296
8296
"{{port.targetPort}}\n" +
8297
8297
"</td>\n" +
0 commit comments