Browse Source
feat(lib): make constructor as public
pull/6306/head
Kenrick Tandrian
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
libs/ui/src/lib/holdings-table/holdings-table.component.ts
|
|
@ -88,7 +88,7 @@ export class GfHoldingsTableComponent { |
|
|
|
|
|
|
|
|
protected readonly isLoading = computed(() => !this.holdings()); |
|
|
protected readonly isLoading = computed(() => !this.holdings()); |
|
|
|
|
|
|
|
|
constructor() { |
|
|
public constructor() { |
|
|
this.dataSource.sortingDataAccessor = getLowercase; |
|
|
this.dataSource.sortingDataAccessor = getLowercase; |
|
|
|
|
|
|
|
|
// Reactive data update
|
|
|
// Reactive data update
|
|
|
|