Browse Source

Edge dashboards cell action buttons

pull/3811/head
Artem Babak 6 years ago
parent
commit
fee5034e46
  1. 6
      ui-ngx/src/app/modules/home/pages/dashboard/dashboards-table-config.resolver.ts

6
ui-ngx/src/app/modules/home/pages/dashboard/dashboards-table-config.resolver.ts

@ -249,6 +249,12 @@ export class DashboardsTableConfigResolver implements Resolve<EntityTableConfig<
}
if (dashboardScope === 'edge') {
actions.push(
{
name: this.translate.instant('dashboard.export'),
icon: 'file_download',
isEnabled: () => true,
onAction: ($event, entity) => this.exportDashboard($event, entity)
},
{
name: this.translate.instant('edge.unassign-from-edge'),
icon: 'portable_wifi_off',

Loading…
Cancel
Save