|
|
@ -14,7 +14,7 @@ import { |
|
|
computed, |
|
|
computed, |
|
|
DestroyRef, |
|
|
DestroyRef, |
|
|
inject, |
|
|
inject, |
|
|
Input, |
|
|
input, |
|
|
OnInit, |
|
|
OnInit, |
|
|
viewChild |
|
|
viewChild |
|
|
} from '@angular/core'; |
|
|
} from '@angular/core'; |
|
|
@ -56,7 +56,7 @@ import { CreateOrUpdatePlatformDialogParams } from './create-or-update-platform- |
|
|
templateUrl: './admin-platform.component.html' |
|
|
templateUrl: './admin-platform.component.html' |
|
|
}) |
|
|
}) |
|
|
export class GfAdminPlatformComponent implements OnInit { |
|
|
export class GfAdminPlatformComponent implements OnInit { |
|
|
@Input() locale = getLocale(); |
|
|
public readonly locale = input(getLocale()); |
|
|
|
|
|
|
|
|
protected dataSource = new MatTableDataSource<Platform>(); |
|
|
protected dataSource = new MatTableDataSource<Platform>(); |
|
|
protected readonly displayedColumns = ['name', 'url', 'accounts', 'actions']; |
|
|
protected readonly displayedColumns = ['name', 'url', 'accounts', 'actions']; |
|
|
|