Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/combobox-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- We fixed an issue where the combobox collapsed to 1px width when placed inside a flex row container with `align-items: center`.

- We fixed an issue where the widget crashed when using the "On filter input change" action with the new string behavior enabled.

## [2.8.1] - 2026-04-30

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function onInputValueChange(
}
if (onChangeFilterInputEvent.canExecute && !onChangeFilterInputEvent.isExecuting) {
onChangeFilterInputEvent.execute({
filterInput: filterValue
filterInput: filterValue || undefined
});
}
}
Expand Down
Loading