@gridsuite/commons-ui 0.89.2 → 0.89.4

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.
@@ -5,7 +5,7 @@ function SelectInput(props) {
5
5
  const intl = useIntl();
6
6
  const { options } = props;
7
7
  const inputTransform = (value) => {
8
- if (value === null) {
8
+ if (!value) {
9
9
  return null;
10
10
  }
11
11
  if (typeof value === "string") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.89.2",
3
+ "version": "0.89.4",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",