From 88e4e96b6985b1024254c7e058c51c98a6a0dc6c Mon Sep 17 00:00:00 2001 From: Michael Sereniti <31261408+msereniti@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:02:54 +0200 Subject: [PATCH] [86by97hp4][select] fixed that `Select.InputSearch.Value` was undefined (#1281) ## Motivation and Context Fixes https://github.com/semrush/intergalactic/issues/1277 ## How has this been tested? Manually, it's enough. ## Types of changes - [x] Bug fix (non-breaking change which fixes an issue). - [ ] New feature (non-breaking change which adds functionality). - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected). - [ ] Nice improve. ## Checklist: - [x] My code follows the code style of this project. - [x] I have updated the documentation accordingly or it's not required. - [x] Unit tests are not broken. - [x] I have added changelog note to corresponding `CHANGELOG.md` file with planned publish date. - [ ] I have added new unit tests on added of fixed functionality. --- semcore/select/CHANGELOG.md | 6 ++++++ semcore/select/src/Select.jsx | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/semcore/select/CHANGELOG.md b/semcore/select/CHANGELOG.md index aaa6fa296e..61a00140e5 100644 --- a/semcore/select/CHANGELOG.md +++ b/semcore/select/CHANGELOG.md @@ -2,6 +2,12 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/). +## [4.36.2] - 2024-04-10 + +### Fixed + +- `Select.InputSearch.Value` was undefined. + ## [4.36.1] - 2024-04-09 ### Changed diff --git a/semcore/select/src/Select.jsx b/semcore/select/src/Select.jsx index b715987c3a..0b08195a3d 100644 --- a/semcore/select/src/Select.jsx +++ b/semcore/select/src/Select.jsx @@ -385,8 +385,8 @@ const Select = createComponent( OptionTitle: DropdownMenu.ItemTitle, OptionHint: DropdownMenu.ItemHint, Divider, - InputSearch: InputSearchWrapper, - Input: InputSearchWrapper, + InputSearch: [InputSearchWrapper, InputSearch._______childrenComponents], + Input: [InputSearchWrapper, InputSearch._______childrenComponents], }, { parent: DropdownMenu, context: selectContext }, );