Browse Source

Improve table widgets mobile mode

pull/2747/head
Igor Kulikov 6 years ago
parent
commit
4659ab7dd0
  1. 2
      ui-ngx/src/app/modules/home/components/widget/lib/alarms-table-widget.component.html
  2. 2
      ui-ngx/src/app/modules/home/components/widget/lib/entities-table-widget.component.html
  3. 2
      ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.html

2
ui-ngx/src/app/modules/home/components/widget/lib/alarms-table-widget.component.html

@ -101,7 +101,7 @@
<mat-icon>{{actionDescriptor.icon}}</mat-icon>
</button>
</div>
<div fxHide fxShow.lt-lg>
<div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
<button mat-button mat-icon-button
(click)="$event.stopPropagation(); ctx.detectChanges();"
[matMenuTriggerFor]="cellActionsMenu">

2
ui-ngx/src/app/modules/home/components/widget/lib/entities-table-widget.component.html

@ -64,7 +64,7 @@
<mat-icon>{{actionDescriptor.icon}}</mat-icon>
</button>
</div>
<div fxHide fxShow.lt-lg>
<div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
<button mat-button mat-icon-button
(click)="$event.stopPropagation(); ctx.detectChanges();"
[matMenuTriggerFor]="cellActionsMenu">

2
ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.html

@ -74,7 +74,7 @@
<mat-icon>{{actionDescriptor.icon}}</mat-icon>
</button>
</div>
<div fxHide fxShow.lt-lg>
<div fxHide fxShow.lt-lg *ngIf="actionCellDescriptors.length">
<button mat-button mat-icon-button
(click)="$event.stopPropagation(); ctx.detectChanges();"
[matMenuTriggerFor]="cellActionsMenu">

Loading…
Cancel
Save