From fa1d6ad109d2267609527caf04a7d088846e6f1b Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 15 Aug 2024 22:10:48 +0300 Subject: [PATCH] Fixed disabled options for SelectInput --- frontend/src/Components/Form/SelectInput.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/Components/Form/SelectInput.js b/frontend/src/Components/Form/SelectInput.js index 553501afc..d43560134 100644 --- a/frontend/src/Components/Form/SelectInput.js +++ b/frontend/src/Components/Form/SelectInput.js @@ -52,6 +52,7 @@ class SelectInput extends Component { const { key, value: optionValue, + isDisabled: optionIsDisabled = false, ...otherOptionProps } = option; @@ -59,6 +60,7 @@ class SelectInput extends Component {