From 94e9448658207ba8a831ead53738c786f56ca163 Mon Sep 17 00:00:00 2001 From: josephschorr Date: Wed, 11 May 2016 03:15:05 +0200 Subject: [PATCH] Fix loading of billing panel when the org has a deprecated plan (#1450) --- static/js/directives/ui/billing-management-panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/directives/ui/billing-management-panel.js b/static/js/directives/ui/billing-management-panel.js index 5cb93db91..f8f9178fc 100644 --- a/static/js/directives/ui/billing-management-panel.js +++ b/static/js/directives/ui/billing-management-panel.js @@ -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) {