Skip to content

Commit 72c2082

Browse files
committed
fix(arc-saas): tested changes
tested changes GH-34
1 parent cd658ea commit 72c2082

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@use '../../styles/grid-styles.scss' as *;
22

33
.ag-theme-quartz {
4-
width: 100%;
5-
height: 400;
6-
}
4+
width: 100%;
5+
height: 400;
6+
}

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ export class OnboardingTenantListComponent
3535
minWidth: 20,
3636
filter: 'agTextColumnFilter',
3737
floatingFilter: true,
38+
sortable: true,
3839
cellRenderer: function (params) {
39-
console.log(params);
40-
console.log(params.data.key);
41-
return `<a href="${params.data.key}.${environment.baseApiUrl}" target="_blank" class="company-link">
40+
const url = environment.baseApiUrl.replace(
41+
'//',
42+
`//${params.data.key}.`,
43+
);
44+
return `<a href="${url}" target="_blank" class="company-link">
4245
${params.value}
4346
</a>`;
4447
},

projects/saas-ui/src/app/main/main.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
width: 100%;
1414
}
1515

16-
.column-wrapper{
17-
height:calc(100% - 200px);
16+
.column-wrapper {
17+
height: calc(100% - 200px);
1818
}
1919
.logo-container {
2020
display: flex;

0 commit comments

Comments
 (0)