Skip to content

Commit

Permalink
Merge pull request #256 from chezwicker/patch-1
Browse files Browse the repository at this point in the history
Fix type error
  • Loading branch information
softsimon authored Aug 15, 2017
2 parents e0ec721 + 2c196f4 commit e64fbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dropdown/dropdown.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class MultiselectDropdown implements OnInit, OnChanges, DoCheck, OnDestro
@Input() settings: IMultiSelectSettings;
@Input() texts: IMultiSelectTexts;
@Input() disabled: boolean = false;
@Input() disabledSelection: false;
@Input() disabledSelection: boolean = false;
@Output() selectionLimitReached = new EventEmitter();
@Output() dropdownClosed = new EventEmitter();
@Output() dropdownOpened = new EventEmitter();
Expand Down

0 comments on commit e64fbdd

Please sign in to comment.