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