Skip to content

Commit 8bb6154

Browse files
committedJul 3, 2017
Bug 1467232 - Fix overview cluster quota warning
1 parent 2b43d48 commit 8bb6154

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎app/scripts/controllers/overview.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ function OverviewController($scope,
10501050

10511051
var updateQuotaWarnings = function() {
10521052
ResourceAlertsService.setGenericQuotaWarning(state.quotas,
1053-
state.clusterQuotaData,
1053+
state.clusterQuotas,
10541054
$routeParams.project,
10551055
state.alerts);
10561056
};

‎dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ return g.sortBuilds(a, !0);
344344
}), Wa();
345345
}
346346
}, Ya = function() {
347-
x.setGenericQuotaWarning(Q.quotas, Q.clusterQuotaData, c.project, Q.alerts);
347+
x.setGenericQuotaWarning(Q.quotas, Q.clusterQuotas, c.project, Q.alerts);
348348
};
349349
z.clearFilter = function() {
350350
o.clear(), z.filterText = "";

0 commit comments

Comments
 (0)
Please sign in to comment.