brainloper-ui 20.0.3 → 20.0.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.
|
@@ -2203,7 +2203,7 @@ class ExportDataService {
|
|
|
2203
2203
|
const data = new Blob([buffer], {
|
|
2204
2204
|
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8'
|
|
2205
2205
|
});
|
|
2206
|
-
fs.saveAs(data, `${fileName}
|
|
2206
|
+
fs.saveAs(data, `${fileName}_${new Date().getTime()}.xlsx`);
|
|
2207
2207
|
}
|
|
2208
2208
|
async getDataBody(url, params, body, filtersPost) {
|
|
2209
2209
|
if (body)
|