From db2cd265f8d04818a03d0e4d88cecb6ce0517db6 Mon Sep 17 00:00:00 2001 From: Igor Kulikov Date: Mon, 8 Jun 2020 10:05:21 +0300 Subject: [PATCH] Minor fix --- .../src/app/modules/home/components/widget/widget.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/widget/widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/widget.component.ts index 389c70a96a..a07e94d843 100644 --- a/ui-ngx/src/app/modules/home/components/widget/widget.component.ts +++ b/ui-ngx/src/app/modules/home/components/widget/widget.component.ts @@ -1043,7 +1043,7 @@ export class WidgetComponent extends PageComponent implements OnInit, AfterViewI const entityId = entityInfo ? entityInfo.entityId : null; const entityName = entityInfo ? entityInfo.entityName : null; const entityLabel = entityInfo && entityInfo.entityLabel ? entityInfo.entityLabel : null; - this.handleWidgetAction(event, descriptor, entityId, entityName, null, entityLabel); + this.handleWidgetAction($event, descriptor, entityId, entityName, null, entityLabel); } }); }