We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc5baa commit b017b20Copy full SHA for b017b20
web/dropdown.ts
@@ -127,7 +127,7 @@ class Dropdown {
127
*/
128
public isSelected(value: string) {
129
if (this.options.length > 0) {
130
- if (this.multipleAllowed && this.optionsSelected[0]) {
+ if ((this.multipleAllowed || this.selectMultipleWithCtrl) && this.optionsSelected[0]) {
131
// Multiple options can be selected, and "Show All" is selected.
132
return true;
133
}
0 commit comments