Skip to content

Commit 6a3310a

Browse files
committed
fix(clickhandler): remove unused event param
1 parent adce246 commit 6a3310a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/ng-sortgrid/src/lib/ngsg-item.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class NgsgItemDirective implements OnInit, OnChanges, AfterViewInit, OnDe
134134
this.ngsgEventService.dropped$.next();
135135
}
136136

137-
@HostListener('click', ['$event'])
137+
@HostListener('click')
138138
clicked(): void {
139139
this.selected = !this.isItemCurrentlySelected();
140140
this.selectionService.updateSelectedDragItem(this.ngSortGridGroup, this.el.nativeElement, this.selected);

0 commit comments

Comments
 (0)