Skip to content

Commit 6df4e56

Browse files
committed
fix(ngOptions): fix frozen ui in ie with more than one select[multiple]
If there are more than one select, and the first select is wrappend in an element with display: inline or display: inline-block, all but the last select are completely unresponsive to any user input. This cannot be tested in a unit-test, as the events must come directly from the ui. Close angular#11314
1 parent cc96188 commit 6df4e56

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/ng/directive/ngOptions.js

-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) {
535535
element.disabled = option.disabled;
536536
if (option.value !== element.value) element.value = option.selectValue;
537537
if (option.label !== element.label) {
538-
element.label = option.label;
539538
element.textContent = option.label;
540539
}
541540
}

0 commit comments

Comments
 (0)