We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea02e72 commit e60f89aCopy full SHA for e60f89a
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## 0.0.93
2
+
3
+- Fix `revertSearchField` prop in `Select` component
4
+- Add `nullDash` prop for `Table` component
5
+- Exclude `reloadDataAfterSaveForm` prop from `Form` component to prevent console Errors
6
7
## 0.0.92
8
9
- `revertSearchField` clears inner input `Select`
src/components/Select/Select.js
@@ -90,10 +90,6 @@ const Select = props => {
90
searchValue: defaultSearchValue,
91
reload: true
92
});
93
- }, []);
94
-
95
- useEffect(() => {
96
- _setSearchValue('');
97
}, [revertSearchValue]);
98
99
useEffect(() => {
0 commit comments