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.
2 parents 271d53d + 9b35440 commit ba7ecfdCopy full SHA for ba7ecfd
src/components/widgets/Dropdown.js
@@ -58,7 +58,7 @@ class Dropdown extends Component {
58
placeholder={placeholder || _('Select an Option')}
59
isClearable={clearable}
60
value={opts.filter(o =>
61
- Array.isArray(value) ? value.includes(o.value) : value === o.value
+ Array.isArray(value) ? value.includes(o[valueKey]) : value === o[valueKey]
62
)}
63
options={opts}
64
isSearchable={searchable}
src/styles/components/widgets/_dropdown.scss
@@ -37,6 +37,9 @@
37
padding-top: 0;
38
padding-bottom: 0;
39
}
40
+ &-notice {
41
+ background: var(--color-background-inputs);
42
+ }
43
44
&__indicator-separator {
45
display: none;
0 commit comments