Skip to content

Commit

Permalink
fix: (combobox) - event throw reorder (#1831)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKMarkowski authored and InnaAtanasova committed Jan 17, 2020
1 parent 2e8921b commit f1988d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/core/src/lib/combobox/combobox.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ export class ComboboxComponent implements ControlValueAccessor, OnInit, OnChange
/** @hidden */
isOpenChangeHandle(isOpen: boolean): void {
if (this.open !== isOpen) {
this.openChange.emit(this.open);
this.open = isOpen;
this.openChange.emit(this.open);
this.onTouched();
if (isOpen) {
this.focusTrap.activate();
Expand Down

0 comments on commit f1988d1

Please sign in to comment.