-
Bug Report
-
Resolution: Fixed
-
L3 - Default
-
None
-
None
-
None
Reproduce:
- Use this markup
<Select onValueSelected={() => {}}> <Option value="a" isDefault>A</Option> <Option value="b">B</Option> </Select> <Select onValueSelected={() => {}}> <Option value="a2" isDefault>A2</Option> <Option value="b2">B2</Option> </Select>
Expected:
- Initially, A is displayed in the first Select, A2 is displayed in the second Select
Observed:
- Both Selects display A2
Expected:
- If I select B for the first dropdown, the second Select still has A2 as value
Observed:
- After selecting B, the second Select displays B, too (which is not even a valid value for this Select)