@@ -12792,10 +12792,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
12792
12792
$templateCache.put('views/quota.html',
12793
12793
"<div class=\"middle\">\n" +
12794
12794
"<div class=\"middle-content\">\n" +
12795
- "<div class=\"container-fluid mar-top-xl \">\n" +
12795
+ "<div class=\"container-fluid\">\n" +
12796
12796
"<alerts alerts=\"alerts\"></alerts>\n" +
12797
- "<div class=\"row\">\n" +
12798
- "<div class=\"col-md-12\">\n" +
12799
12797
"<h1>\n" +
12800
12798
"<span ng-if=\"clusterQuotas.length\">Cluster </span>Quota\n" +
12801
12799
"<span class=\"page-header-link\">\n" +
@@ -12858,7 +12856,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
12858
12856
"</thead>\n" +
12859
12857
"<tbody>\n" +
12860
12858
"<tr ng-if=\"!quota.status.total.used\" class=\"danger\">\n" +
12861
- "<td colspan=\"5 \">\n" +
12859
+ "<td colspan=\"4 \">\n" +
12862
12860
"<span data-toggle=\"tooltip\" title=\"Missing quota status\" class=\"pficon pficon-error-circle-o\" style=\"cursor: help\"></span>\n" +
12863
12861
"Status has not been reported on this quota usage record. Any resources limited by this quota record can not be allocated.\n" +
12864
12862
"</td>\n" +
@@ -12940,7 +12938,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
12940
12938
"</thead>\n" +
12941
12939
"<tbody>\n" +
12942
12940
"<tr ng-if=\"!quota.status.used\" class=\"danger\">\n" +
12943
- "<td colspan=\"5 \">\n" +
12941
+ "<td colspan=\"3 \">\n" +
12944
12942
"<span data-toggle=\"tooltip\" title=\"Missing quota status\" class=\"pficon pficon-error-circle-o\" style=\"cursor: help\"></span>\n" +
12945
12943
"Status has not been reported on this quota usage record. Any resources limited by this quota record can not be allocated.\n" +
12946
12944
"</td>\n" +
@@ -13015,8 +13013,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
13015
13013
"</span>\n" +
13016
13014
"</th>\n" +
13017
13015
"</thead>\n" +
13018
- "<tbody>\n" +
13019
- "<tr ng-repeat-start=\"limit in limitRange.spec.limits\"></tr>\n" +
13016
+ "<tbody ng-repeat=\"limit in limitRange.spec.limits\">\n" +
13020
13017
"<tr ng-repeat=\"(type, typeLimits) in limitsByType[limitRange.metadata.name][limit.type]\">\n" +
13021
13018
"<td>{{limit.type}} {{type | computeResourceLabel : true}}</td>\n" +
13022
13019
"<td>{{(typeLimits.min | usageWithUnits : type) || \"—\"}}</td>\n" +
@@ -13025,16 +13022,13 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
13025
13022
"<td>{{(typeLimits[\"default\"] | usageWithUnits : type) || \"—\"}}</td>\n" +
13026
13023
"<td>{{typeLimits.maxLimitRequestRatio || \"—\"}}</td>\n" +
13027
13024
"</tr>\n" +
13028
- "<tr ng-repeat-end></tr>\n" +
13029
13025
"</tbody>\n" +
13030
13026
"</table>\n" +
13031
13027
"</div>\n" +
13032
13028
"</div>\n" +
13033
13029
"</div>\n" +
13034
13030
"</div>\n" +
13035
13031
"</div>\n" +
13036
- "</div>\n" +
13037
- "</div>\n" +
13038
13032
"</div>"
13039
13033
);
13040
13034
0 commit comments