1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-12 10:13:46 +02:00

[http options] beautify the json format when clicked the save button

This commit is contained in:
Louis Lam 2021-10-15 18:57:27 +08:00
parent cd211a6be7
commit 7ac0ab2e34

View File

@ -466,6 +466,15 @@ export default {
return;
}
// Beautiful the JSON format
if (this.monitor.body) {
this.monitor.body = JSON.stringify(JSON.parse(this.monitor.body), null, 4);
}
if (this.monitor.headers) {
this.monitor.headers = JSON.stringify(JSON.parse(this.monitor.headers), null, 4);
}
if (this.isAdd) {
this.$root.add(this.monitor, async (res) => {