You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
411 B
6 lines
411 B
5 months ago
|
<div cdkDropList [cdkDropListSortPredicate]="sticky" (cdkDropListDropped)="drop($event)">
|
||
|
<button mat-menu-item cdkDrag *ngFor="let item of columns" [cdkDragDisabled]="item.sticky || !item.header">
|
||
|
<mat-icon class="app-foreground-secondary">more_vert</mat-icon>
|
||
|
<mat-checkbox [(ngModel)]="item.display" (click)="$event.stopPropagation()">{{ item.header | translate }}</mat-checkbox>
|
||
|
</button>
|
||
|
</div>
|