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 a86c141 commit 4e4dd92Copy full SHA for 4e4dd92
packages/react-select/src/Select.js
@@ -1422,7 +1422,6 @@ export default class Select extends Component<Props, State> {
1422
};
1423
1424
const { cx, theme, selectProps } = this.commonProps;
1425
-
1426
return (
1427
<Input
1428
autoCapitalize="none"
@@ -1442,7 +1441,7 @@ export default class Select extends Component<Props, State> {
1442
1441
tabIndex={tabIndex}
1443
theme={theme}
1444
type="text"
1445
- value={inputValue}
+ value={!inputValue ? '' : inputValue}
1446
{...ariaAttributes}
1447
/>
1448
);
0 commit comments