fix(designer): make searchTerm placeholder harder to translate so it's not accidently translated #4764
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.
fixes #3972
This pull request primarily focuses on updating the localization strings and the corresponding usage in the codebase. The changes involve updating a string ID and its corresponding text and comment in the
Localize/lang/strings.json
file and updating the usage of this string in theSearchResultsGrid
component in thesearchResult.tsx
file.Localization strings update:
Localize/lang/strings.json
: The string IDVI7EqG
and its text and comment have been removed, and a new string ID4hlqgK
with its corresponding text and comment have been added. The new string ID and text are used to display a message when no search results are found. [1] [2] [3] [4]Codebase update:
libs/designer-ui/src/lib/panel/recommendationpanel/searchResult.tsx
: In theSearchResultsGrid
component, the string ID and the placeholder in thedefaultMessage
property have been updated to match the new string ID and text added in theLocalize/lang/strings.json
file.