mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-31 00:36:16 +00:00
Format JSON file before download
This commit is contained in:
parent
2ed8f12dc0
commit
c387fb264e
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@ export default {
|
|||
notificationList: this.$root.notificationList,
|
||||
monitorList: monitorList,
|
||||
}
|
||||
exportData = JSON.stringify(exportData);
|
||||
exportData = JSON.stringify(exportData, null, 4);
|
||||
let downloadItem = document.createElement("a");
|
||||
downloadItem.setAttribute("href", "data:application/json;charset=utf-8," + encodeURI(exportData));
|
||||
downloadItem.setAttribute("download", fileName);
|
||||
|
|
Loading…
Add table
Reference in a new issue