@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/.turbo/turbo-build.log +5 -5
- package/.turbo/turbo-lint.log +2 -2
- package/.turbo/turbo-test.log +9 -9
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx +2 -4
- package/src/configuration/version.ts +1 -1
package/package.json
CHANGED
|
@@ -143,10 +143,8 @@ export const WfoSearch = () => {
|
|
|
143
143
|
};
|
|
144
144
|
|
|
145
145
|
const onSearchChange = (searchText: string) => {
|
|
146
|
-
|
|
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.
|
|
1
|
+
export const ORCHESTRATOR_UI_LIBRARY_VERSION = '6.1.1';
|