@visns-studio/visns-components 3.2.2 → 3.2.3
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.
|
@@ -611,6 +611,7 @@ const DataGrid = forwardRef(
|
|
|
611
611
|
|
|
612
612
|
const res = await Download(form.export.url, 'POST', {
|
|
613
613
|
filter: filterValue,
|
|
614
|
+
paramId: paramValue || '',
|
|
614
615
|
});
|
|
615
616
|
|
|
616
617
|
if (res.data.error) {
|
|
@@ -668,7 +669,7 @@ const DataGrid = forwardRef(
|
|
|
668
669
|
{(form.create &&
|
|
669
670
|
form.create.title &&
|
|
670
671
|
form.create.title !== '') ||
|
|
671
|
-
form.url ? (
|
|
672
|
+
(form.url && form.create.title) ? (
|
|
672
673
|
<button
|
|
673
674
|
className="btn"
|
|
674
675
|
onClick={(e) => {
|
package/package.json
CHANGED