Fixed: Disabled select option still selectable

(cherry picked from commit 063dba22a803295adee4fdcbe42718af3e85ca78)

Closes #4679
This commit is contained in:
Mark McDowall 2024-03-13 21:05:15 -07:00 committed by Bogdan
parent 63e36f71d2
commit 55eaecb3c8
10 changed files with 15 additions and 15 deletions

View file

@ -18,7 +18,7 @@ function MonitorNewItemsSelectInput(props) {
values.unshift({
key: 'noChange',
value: translate('NoChange'),
disabled: includeNoChangeDisabled
isDisabled: includeNoChangeDisabled
});
}
@ -26,7 +26,7 @@ function MonitorNewItemsSelectInput(props) {
values.unshift({
key: 'mixed',
value: '(Mixed)',
disabled: true
isDisabled: true
});
}