Fixed disable options for SelectInput

pull/4906/head
Bogdan 4 months ago
parent 56679861a0
commit 633feaa023

@ -25,7 +25,7 @@ function MonitorAlbumsSelectInput(props) {
if (includeMixed) { if (includeMixed) {
values.unshift({ values.unshift({
key: 'mixed', key: 'mixed',
value: '(Mixed)', value: `(${translate('Mixed')})`,
isDisabled: true isDisabled: true
}); });
} }

@ -52,6 +52,7 @@ class SelectInput extends Component {
const { const {
key, key,
value: optionValue, value: optionValue,
isDisabled: optionIsDisabled = false,
...otherOptionProps ...otherOptionProps
} = option; } = option;
@ -59,6 +60,7 @@ class SelectInput extends Component {
<option <option
key={key} key={key}
value={key} value={key}
disabled={optionIsDisabled}
{...otherOptionProps} {...otherOptionProps}
> >
{typeof optionValue === 'function' ? optionValue() : optionValue} {typeof optionValue === 'function' ? optionValue() : optionValue}

Loading…
Cancel
Save