mozrest-sdk-react-dev 0.2.7 → 0.2.8
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/mozrest-sdk.es.js +2 -3
- package/package.json +1 -1
package/mozrest-sdk.es.js
CHANGED
|
@@ -101685,7 +101685,7 @@ const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportL
|
|
|
101685
101685
|
const onRequestExcel = () => {
|
|
101686
101686
|
setIsExportLoading(true);
|
|
101687
101687
|
onCloseConfirmationModal();
|
|
101688
|
-
execute({ params: exportFilters });
|
|
101688
|
+
execute({ params: { ...exportFilters, userEmail } });
|
|
101689
101689
|
};
|
|
101690
101690
|
return /* @__PURE__ */ React__default.createElement(Modal2, {
|
|
101691
101691
|
open,
|
|
@@ -101704,8 +101704,7 @@ const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportL
|
|
|
101704
101704
|
setExportFilters({
|
|
101705
101705
|
...exportFilters,
|
|
101706
101706
|
["filters[from]"]: hooks(from2).format("YYYY-MM-DD"),
|
|
101707
|
-
["filters[till]"]: hooks(till).format("YYYY-MM-DD")
|
|
101708
|
-
userEmail
|
|
101707
|
+
["filters[till]"]: hooks(till).format("YYYY-MM-DD")
|
|
101709
101708
|
});
|
|
101710
101709
|
}
|
|
101711
101710
|
}
|