Improvements to EnhancedSelectInput

(cherry picked from commit 4c622fd41289cd293a68a6a9f6b8da2a086edecb)
This commit is contained in:
Mark McDowall
2024-06-19 15:50:36 -07:00
committed by Bogdan
parent 2d6c818aec
commit bdae60bac9
2 changed files with 19 additions and 15 deletions
@@ -34,7 +34,8 @@ function getSelectOptions(items) {
key: option.value,
value: option.name,
hint: option.hint,
parentKey: option.parentValue
parentKey: option.parentValue,
isDisabled: option.isDisabled
};
});
}