Skip to content

Commit c25cdfc

Browse files
committed
fix(arc-saas): addition of tier in manage plan
addition of tier in manage plan GH-88
1 parent f9a59be commit c25cdfc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

projects/saas-ui/src/app/main/components/manage-plans/manage-plans.component.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export class ManagePlansComponent extends RouteComponentBaseDirective {
3434
{field: 'description', width: 200, minWidth: 20},
3535
{field: 'cycleName', width: 250, minWidth: 20},
3636
{field: 'currencyName', width: 250, minWidth: 20},
37+
{field: 'tier', headerName: 'Tier', width: 250, minWidth: 20},
3738
{field: 'price', width: 250, minWidth: 20},
3839
{
3940
field: 'actions',
@@ -106,13 +107,12 @@ export class ManagePlansComponent extends RouteComponentBaseDirective {
106107
id: item.id,
107108
name: item.name,
108109
description: item.description,
109-
cycleName: item['billingCycle']?.cycleName,
110-
111-
currencyName: item['currency']?.currencyName,
112-
113-
price: item.price,
114-
};
115-
});
110+
cycleName: item['billingCycle']?.cycleName,
111+
currencyName: item['currency']?.currencyName,
112+
tier: item.tier,
113+
price: item.price,
114+
};
115+
});
116116

117117
return rows;
118118
} catch (error) {

0 commit comments

Comments
 (0)