|
|
|
@ -23,13 +23,13 @@ |
|
|
|
</mat-cell> |
|
|
|
</ng-container> |
|
|
|
<ng-container matColumnDef="sampleData"> |
|
|
|
<mat-header-cell *matHeaderCellDef style="flex: 0 0 30%;"> {{ 'import.column-example' | translate }} </mat-header-cell> |
|
|
|
<mat-header-cell *matHeaderCellDef style="flex: 0 0 30%;" class="mat-column-sampleData"> {{ 'import.column-example' | translate }} </mat-header-cell> |
|
|
|
<mat-cell *matCellDef="let column"> |
|
|
|
{{column.sampleData}} |
|
|
|
</mat-cell> |
|
|
|
</ng-container> |
|
|
|
<ng-container matColumnDef="type"> |
|
|
|
<mat-header-cell *matHeaderCellDef style="flex: 0 0 40%"> {{ 'import.column-type.column-type' | translate }} </mat-header-cell> |
|
|
|
<mat-header-cell *matHeaderCellDef style="flex: 0 0 40%" class="mat-column-type"> {{ 'import.column-type.column-type' | translate }} </mat-header-cell> |
|
|
|
<mat-cell *matCellDef="let column"> |
|
|
|
<mat-select matInput [(ngModel)]="column.type" (ngModelChange)="columnsUpdated()"> |
|
|
|
<mat-option *ngFor="let type of columnTypes" [value]="type.value" [disabled]="type.disabled"> |
|
|
|
|