99 </ button >
1010 </ mat-card-title >
1111 < mat-card-content [class.collapsed] ="entityLayout.collapsed ">
12- < mat-table cdk-table #table [dataSource] ="propertiesDataSource ">
12+ < mat-card-content mat- table cdk-table #table [dataSource] ="propertiesDataSource ">
1313 <!-- Key Column -->
1414 < ng-container cdkColumnDef ="key ">
15- < mat-header-cell *cdkHeaderCellDef >
15+ < th mat-header-cell *cdkHeaderCellDef >
1616 {{ modelLayout.entitiesTableSettings.getColumn('key').name }}
17- </ mat-header-cell >
18- < mat-cell *cdkCellDef ="let row ">
17+ </ th >
18+ < td mat-cell *cdkCellDef ="let row ">
1919 < mat-icon *ngIf ="isKey(row) "> vpn_key</ mat-icon >
2020 < span *ngIf ="isForeignKey(row) "> FK</ span >
21- </ mat-cell >
21+ </ td >
2222 </ ng-container >
2323
2424 <!-- Name Column -->
2525 < ng-container cdkColumnDef ="name ">
26- < mat-header-cell *cdkHeaderCellDef >
26+ < th mat-header-cell *cdkHeaderCellDef >
2727 {{ modelLayout.entitiesTableSettings.getColumn('name').name }}
28- </ mat-header-cell >
29- < mat-cell *cdkCellDef ="let row "> {{ row.name }} </ mat-cell >
28+ </ th >
29+ < td mat-cell *cdkCellDef ="let row "> {{ row.name }} </ td >
3030 </ ng-container >
3131
3232 <!-- Type Column -->
3333 < ng-container cdkColumnDef ="clrType ">
34- < mat-header-cell *cdkHeaderCellDef >
34+ < th mat-header-cell *cdkHeaderCellDef >
3535 {{ modelLayout.entitiesTableSettings.getColumn('clrType').name }}
36- </ mat-header-cell >
37- < mat-cell *cdkCellDef ="let row ">
36+ </ th >
37+ < td mat-cell *cdkCellDef ="let row ">
3838 < efd-clr-type [type] ="row.clrType "> </ efd-clr-type >
39- </ mat-cell >
39+ </ td >
4040 </ ng-container >
4141
4242 <!-- Nullable Column -->
4343 < ng-container cdkColumnDef ="nullable ">
44- < mat-header-cell *cdkHeaderCellDef >
44+ < th mat-header-cell *cdkHeaderCellDef >
4545 {{ modelLayout.entitiesTableSettings.getColumn('nullable').name }}
46- </ mat-header-cell >
47- < mat-cell *cdkCellDef ="let row ">
46+ </ th >
47+ < td mat-cell *cdkCellDef ="let row ">
4848 < ng-container *ngIf ="row.isNullable "> NULL</ ng-container >
49- </ mat-cell >
49+ </ td >
5050 </ ng-container >
5151
5252 < mat-header-row *cdkHeaderRowDef ="modelLayout.entitiesTableSettings.displayedColumnsKeys "> </ mat-header-row >
5353 < mat-row *cdkRowDef ="let row; columns: modelLayout.entitiesTableSettings.displayedColumnsKeys; "> </ mat-row >
54- </ mat-table >
54+ </ mat-card-content > table>
5555 </ mat-card-content >
5656</ mat-card >
0 commit comments