Commit 4659ab7dd0da41ae86927ff139f301ecdffa952e

Authored by Igor Kulikov
1 parent e3e037c9

Improve table widgets mobile mode

... ... @@ -101,7 +101,7 @@
101 101 <mat-icon>{{actionDescriptor.icon}}</mat-icon>
102 102 </button>
103 103 </div>
104   - <div fxHide fxShow.lt-lg>
  104 + <div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
105 105 <button mat-button mat-icon-button
106 106 (click)="$event.stopPropagation(); ctx.detectChanges();"
107 107 [matMenuTriggerFor]="cellActionsMenu">
... ...
... ... @@ -64,7 +64,7 @@
64 64 <mat-icon>{{actionDescriptor.icon}}</mat-icon>
65 65 </button>
66 66 </div>
67   - <div fxHide fxShow.lt-lg>
  67 + <div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
68 68 <button mat-button mat-icon-button
69 69 (click)="$event.stopPropagation(); ctx.detectChanges();"
70 70 [matMenuTriggerFor]="cellActionsMenu">
... ...
... ... @@ -74,7 +74,7 @@
74 74 <mat-icon>{{actionDescriptor.icon}}</mat-icon>
75 75 </button>
76 76 </div>
77   - <div fxHide fxShow.lt-lg>
  77 + <div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
78 78 <button mat-button mat-icon-button
79 79 (click)="$event.stopPropagation(); ctx.detectChanges();"
80 80 [matMenuTriggerFor]="cellActionsMenu">
... ...