Add component search empty state suggestions#2453
Open
Mbeaulne wants to merge 1 commit into
Open
Conversation
8 tasks
🎩 PreviewA preview build has been created at: |
This was referenced Jun 23, 2026
Collaborator
Author
This was referenced Jun 23, 2026
078b721 to
b06233a
Compare
4ccd778 to
8aded43
Compare
b06233a to
eda467b
Compare
8aded43 to
f106bd7
Compare
eda467b to
ec1b577
Compare
f106bd7 to
86431a8
Compare
ec1b577 to
87d28db
Compare
32559c1 to
b03fd0f
Compare
0ea0a15 to
9551590
Compare
b03fd0f to
3e09547
Compare
3e09547 to
cfeb63b
Compare
9551590 to
76d80b5
Compare
maxy-shpfy
reviewed
Jun 26, 2026
maxy-shpfy
reviewed
Jun 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Adds clickable suggested search terms ("csv", "train", "predict", "dataframe") to the component search empty state. When a search returns no results, users now see these suggestions as clickable buttons that populate the search input and trigger a new search. The suggestions are rendered via a new shared
ComponentSearchEmptyStateSuggestionscomponent, and the list of suggestions is centralized incomponentSearchSuggestions.ts.The
DebouncedComponentSearchInputin the editor now accepts aninitialValueprop so that clicking a suggestion correctly reflects the new query in the input field.Related Issue and Pull requests
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
Additional Comments
The suggestions are defined as a
constarray insrc/services/componentSearchSuggestions.ts, making it straightforward to add or remove suggestions in one place.