We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f52fdb commit fb647ecCopy full SHA for fb647ec
projects/saas-ui/src/app/main/components/manage-plans/manage-plans.component.ts
@@ -101,9 +101,9 @@ export class ManagePlansComponent extends RouteComponentBaseDirective {
101
return this.billingPlanService.getPlanOptions(filter).pipe(
102
map(res => {
103
try {
104
- const body = JSON.parse(JSON.stringify(res)).body;
105
- this.getResp = body;
106
- const rows = body.map(item => {
+ // const body = JSON.parse(JSON.stringify(res)).body;
+ // this.getResp = body;
+ const rows = res.map(item => {
107
return {
108
id: item.id,
109
name: item.name,
0 commit comments