@coreui/angular-pro 4.1.0-next.0 → 4.1.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7087,6 +7087,9 @@ class MultiSelectComponent {
|
|
|
7087
7087
|
onKeyDown($event) {
|
|
7088
7088
|
if (this.disabled)
|
|
7089
7089
|
return;
|
|
7090
|
+
// avoid setting focus to option while on input element
|
|
7091
|
+
if ($event.target === this.inputElement.nativeElement)
|
|
7092
|
+
return;
|
|
7090
7093
|
this.listKeyManager.onKeydown($event);
|
|
7091
7094
|
}
|
|
7092
7095
|
onClick($event) {
|