Fix loading of billing panel when the org has a deprecated plan (#1450)
This commit is contained in:
parent
90bf688c48
commit
94e9448658
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Reference in a new issue