Fixed: Disabled select option still selectable

(cherry picked from commit 063dba22a803295adee4fdcbe42718af3e85ca78)

Closes #3362
This commit is contained in:
Mark McDowall
2024-03-13 21:05:15 -07:00
committed by Bogdan
parent 1aa746bea1
commit 77f1e8f8c9
11 changed files with 15 additions and 15 deletions
@@ -17,7 +17,7 @@ function MonitorNewItemsSelectInput(props) {
values.unshift({
key: 'noChange',
value: translate('NoChange'),
disabled: true
isDisabled: true
});
}
@@ -25,7 +25,7 @@ function MonitorNewItemsSelectInput(props) {
values.unshift({
key: 'mixed',
value: '(Mixed)',
disabled: true
isDisabled: true
});
}