Skip to content

Commit

Permalink
fix(clickhandler): remove unused event param
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Aug 17, 2020
1 parent adce246 commit 6a3310a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ng-sortgrid/src/lib/ngsg-item.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class NgsgItemDirective implements OnInit, OnChanges, AfterViewInit, OnDe
this.ngsgEventService.dropped$.next();
}

@HostListener('click', ['$event'])
@HostListener('click')
clicked(): void {
this.selected = !this.isItemCurrentlySelected();
this.selectionService.updateSelectedDragItem(this.ngSortGridGroup, this.el.nativeElement, this.selected);
Expand Down

0 comments on commit 6a3310a

Please sign in to comment.