Skip to content

Commit

Permalink
Fixed #6838 - Multiselect error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Merve7 committed Nov 7, 2018
1 parent 1f2b58b commit fda621e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ export class MultiSelect implements OnInit,AfterViewInit,AfterContentInit,AfterV
}

show() {
this.overlayVisible = true;
if(!this.overlayVisible){
this.overlayVisible = true;
}
this.bindDocumentClickListener();

}
Expand Down

0 comments on commit fda621e

Please sign in to comment.