@orchestrator-ui/orchestrator-ui-components 6.1.0 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/orchestrator-ui-components",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Library of UI Components used to display the workflow orchestrator frontend",
6
6
  "author": {
@@ -143,10 +143,8 @@ export const WfoSearch = () => {
143
143
  };
144
144
 
145
145
  const onSearchChange = (searchText: string) => {
146
- const cleanedText = searchText.replace(/[=><[\]{}\\/#$%^&+]/g, '');
147
-
148
- setSearchValue(cleanedText);
149
- setQuery(cleanedText.trim() || '');
146
+ setSearchValue(searchText);
147
+ setQuery(searchText);
150
148
  };
151
149
 
152
150
  useEffect(() => {
@@ -1 +1 @@
1
- export const ORCHESTRATOR_UI_LIBRARY_VERSION = '6.1.0';
1
+ export const ORCHESTRATOR_UI_LIBRARY_VERSION = '6.1.1';