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 66623b9 commit 237211aCopy full SHA for 237211a
packages/antd/src/widgets/SelectWidget/index.js
@@ -94,7 +94,7 @@ const SelectWidget = ({
94
>
95
{enumOptions.map(({ value: optionValue, label: optionLabel }) => (
96
<Select.Option
97
- disabled={enumDisabled && enumDisabled.indexOf(value) !== -1}
+ disabled={enumDisabled && enumDisabled.indexOf(optionValue) !== -1}
98
key={String(optionValue)}
99
value={String(optionValue)}
100
0 commit comments