Browse Source

Removed ng-container and fixed the format issue

pull/2444/head
Basim Mohammed 2 years ago
committed by Thomas
parent
commit
06ffa92935
  1. 4
      apps/client/src/app/components/admin-jobs/admin-jobs.html
  2. 2
      apps/client/src/app/components/admin-jobs/admin-jobs.module.ts

4
apps/client/src/app/components/admin-jobs/admin-jobs.html

@ -15,9 +15,7 @@
</form>
<table class="gf-table w-100" mat-table [dataSource]="dataSource">
<ng-container matColumnDef="index">
<th *matHeaderCellDef class="px-1 py-2 text-right" mat-header-cell>
<ng-container>#</ng-container>
</th>
<th *matHeaderCellDef class="px-1 py-2 text-right" mat-header-cell>#</th>
<td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell>
{{ element.id }}
</td>

2
apps/client/src/app/components/admin-jobs/admin-jobs.module.ts

@ -21,4 +21,4 @@ import { AdminJobsComponent } from './admin-jobs.component';
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class GfAdminJobsModule { }
export class GfAdminJobsModule {}

Loading…
Cancel
Save