Skip to content

Commit 61ff10f

Browse files
authored
Merge branch 'master' into GH-88
2 parents c25cdfc + c47667f commit 61ff10f

17 files changed

+13
-914
lines changed

package-lock.json

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/saas-ui/src/app/main/components/onboarding-tenant-list/onboarding-tenant-list.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {HttpClient} from '@angular/common/http';
2727
})
2828
export class OnboardingTenantListComponent extends RouteComponentBaseDirective {
2929
gridApi: GridApi;
30-
params: AnyObject;
30+
params: TenantDetails;
3131
gridOptions: GridOptions;
3232
limit = 10;
3333
defaultColDef: ColDef = {
@@ -210,10 +210,11 @@ export class OnboardingTenantListComponent extends RouteComponentBaseDirective {
210210
name: item.name,
211211
tenant_name: fullTenantName,
212212
email: item.email,
213+
key: item.key,
213214
address: addressString,
214215
planName: item.subscription?.plan.name,
215216
tier: displayTier,
216-
status: TenantStatus[item.subscription?.status],
217+
status: TenantStatus[item.status],
217218
startDate: item.subscription?.startDate
218219
? new Date(item.subscription.startDate).toLocaleDateString()
219220
: 'N/A',

projects/saas-ui/src/app/main/styles/grid-styles.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@
1414
width: 100%;
1515
overflow: auto;
1616
height: calc(100vh - 120px);
17-
border-radius: 15px;
1817
}
1918
.ag-theme-quartz {
2019
width: 100%;
2120
height: 650px;
22-
--ag-font-family: sans-serif;
23-
--ag-font-size: 16px;
2421
}
2522

2623
.regbtn {

projects/saas-ui/src/app/on-boarding/commands/add-subscriber-command.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

projects/saas-ui/src/app/on-boarding/commands/get-all-tenant-command.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

projects/saas-ui/src/app/on-boarding/commands/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ export * from './get-lead-by-id.command';
44
export * from './get-plan.command';
55
export * from './add-lead-command';
66
export * from './get-lead-command';
7-
export * from './add-subscriber-command';
8-
export * from './get-all-tenant-command';

projects/saas-ui/src/app/on-boarding/components/add-subscriber/add-subscriber.component.html

Lines changed: 0 additions & 265 deletions
This file was deleted.

0 commit comments

Comments
 (0)