@dartech/arsenal-ui 1.4.25 → 1.4.26
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/index.js +4 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -904,7 +904,6 @@ function ControlQueryAutocomplete(_a) {
|
|
|
904
904
|
onChange(event, value);
|
|
905
905
|
}
|
|
906
906
|
}, [setFieldValue, onChange]);
|
|
907
|
-
console.log(isDirty, formValue, searchValue);
|
|
908
907
|
useEffect(() => {
|
|
909
908
|
if (!isDirty && formValue && itemQueryFunction) {
|
|
910
909
|
let requestValue = formValue;
|
|
@@ -1393,7 +1392,10 @@ const JsonTypeCell = ({
|
|
|
1393
1392
|
}), jsx(JsonModalView, {
|
|
1394
1393
|
open: jsonModalOpen,
|
|
1395
1394
|
value: getJsonStringValue(value),
|
|
1396
|
-
onClose: onJsonModalClose
|
|
1395
|
+
onClose: onJsonModalClose,
|
|
1396
|
+
jsonViewProps: {
|
|
1397
|
+
height: 450
|
|
1398
|
+
}
|
|
1397
1399
|
})]
|
|
1398
1400
|
}));
|
|
1399
1401
|
};
|