select icon indicating copy to clipboard operation
select copied to clipboard

When `showSearch={true}` and `defaultActiveFirstOption={false}`, pressing ArrowUp makes the second-to-last option active

Open xurxe opened this issue 4 years ago • 0 comments

If you have the following code:

<Select showSearch defaultActiveFirstOption={false}>
  <Select.Option value="a">A</Select.Option>
  <Select.Option value="b">B</Select.Option>
  <Select.Option value="c">C</Select.Option>
</Select>

And you start typing in the input field, pressing ArrowUp makes B active, not C.

xurxe avatar Nov 29 '21 10:11 xurxe