@andersonalmeidax0/webcomponents 0.1.17 → 0.1.19
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/RestAPIAdapter.js +1 -1
- package/jzcomponents/XTableRead.jsx +1 -1
- package/package.json +1 -1
package/RestAPIAdapter.js
CHANGED
|
@@ -194,7 +194,7 @@ class XTableCell extends React.Component {
|
|
|
194
194
|
const url = window.URL.createObjectURL(new Blob([blob]));
|
|
195
195
|
const link = document.createElement('a');
|
|
196
196
|
link.href = url;
|
|
197
|
-
link.setAttribute('download', `${
|
|
197
|
+
link.setAttribute('download', `${fname}`);
|
|
198
198
|
// 3. Append to html page
|
|
199
199
|
document.body.appendChild(link);
|
|
200
200
|
// 4. Force download
|