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 f5c3c50 commit 34627dfCopy full SHA for 34627df
packages/react-ui-components/src/MultiSelectBox/multiSelectBox.js
@@ -185,6 +185,7 @@ class MultiSelectBox extends PureComponent {
185
render() {
186
const {
187
searchOptions,
188
+ displaySearchBox,
189
values,
190
optionValueField,
191
theme,
@@ -217,13 +218,13 @@ class MultiSelectBox extends PureComponent {
217
218
disabled={disabled}
219
/>
220
</ul>
- <SelectBox
221
+ {displaySearchBox && (<SelectBox
222
{...omit(this.props, ['theme', 'className'])}
223
options={filteredSearchOptions}
224
value=""
225
onValueChange={this.handleNewValueSelected}
226
- />
227
+ />)}
228
</div>
229
);
230
}
0 commit comments