Skip to content

Commit

Permalink
fix: wrong method for api unselect
Browse files Browse the repository at this point in the history
  • Loading branch information
anjmao committed Mar 12, 2018
1 parent f6d94fa commit 531fd1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng-select/ng-select.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class NgSelectComponent implements OnDestroy, OnChanges, AfterViewInit, C
close: this.close.bind(this),
filter: this.filter.bind(this),
select: this.select.bind(this),
unselect: this.select.bind(this)
unselect: this.unselect.bind(this)
};

private _defaultLabel = 'label';
Expand Down

0 comments on commit 531fd1b

Please sign in to comment.