remove oidc client id from table
This commit is contained in:
@@ -16,11 +16,6 @@
|
|||||||
<td mat-cell *matCellDef="let client">{{client.id}}</td>
|
<td mat-cell *matCellDef="let client">{{client.id}}</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<ng-container matColumnDef="clientId">
|
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>{{'admin.oidc_clients.client_id' | i18n}}</th>
|
|
||||||
<td mat-cell *matCellDef="let client">{{client.clientId}}</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="clientName">
|
<ng-container matColumnDef="clientName">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>{{'admin.oidc_clients.client_name' | i18n}}</th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>{{'admin.oidc_clients.client_name' | i18n}}</th>
|
||||||
<td mat-cell *matCellDef="let client">{{client.clientName}}</td>
|
<td mat-cell *matCellDef="let client">{{client.clientName}}</td>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import { AdminOidcClientEditDialog } from './oidc-client.edit';
|
|||||||
styleUrls: ['../admin.scss']
|
styleUrls: ['../admin.scss']
|
||||||
})
|
})
|
||||||
export class AdminOidcClientsComponent implements OnInit {
|
export class AdminOidcClientsComponent implements OnInit {
|
||||||
displayedColumns: string[] = ['id', 'clientId', 'clientName', 'actions'];
|
displayedColumns: string[] = ['id', 'clientName', 'actions'];
|
||||||
|
|
||||||
oidcClients: any;
|
oidcClients: any;
|
||||||
page: any = { page: 0, size: 10, sort: "id", desc: false };
|
page: any = { page: 0, size: 10, sort: "id", desc: false };
|
||||||
|
|||||||
Reference in New Issue
Block a user