Fix loading of billing panel when the org has a deprecated plan (#1450)

This commit is contained in:
josephschorr 2016-05-11 03:15:05 +02:00 committed by Jimmy Zelinskie
parent 90bf688c48
commit 94e9448658

View file

@ -24,7 +24,7 @@ angular.module('quay').directive('billingManagementPanel', function () {
$scope.subscription = sub;
// Load the plan info.
PlanService.getPlan(sub['plan'], function(plan) {
PlanService.getPlanIncludingDeprecated(sub['plan'], function(plan) {
$scope.currentPlan = plan;
if (!sub.hasSubscription) {