From e709a658c0c536cb5226b0085bca10b678a7aff0 Mon Sep 17 00:00:00 2001 From: Jay Perera Date: Sat, 24 Dec 2016 14:44:20 +1300 Subject: [PATCH] #545 fixed --- components/select/select.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/select/select.ts b/components/select/select.ts index 99f23d21..c997e5e2 100755 --- a/components/select/select.ts +++ b/components/select/select.ts @@ -408,6 +408,8 @@ export class SelectComponent implements OnInit { this.inputValue = target.value; this.behavior.filter(new RegExp(escapeRegexp(this.inputValue), 'ig')); this.doEvent('typed', this.inputValue); + }else { + this.open(); } }