Skip to content

Commit

Permalink
[86by97hp4][select] fixed that Select.InputSearch.Value was undefin…
Browse files Browse the repository at this point in the history
…ed (#1281)

<!--- Provide a general summary of your changes in the Title above -->

## Motivation and Context

Fixes #1277

## How has this been tested?

Manually, it's enough.

## Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all
the boxes that apply: -->

- [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:

<!--- Go over all the following points, and put an `x` in all the boxes
that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->

- [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.
  • Loading branch information
msereniti authored Apr 10, 2024
1 parent 130549f commit 88e4e96
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions semcore/select/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions semcore/select/src/Select.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
);
Expand Down

0 comments on commit 88e4e96

Please sign in to comment.