diff --git a/frontend/src/business/components/history/api/ApiHistoryDetail.vue b/frontend/src/business/components/history/api/ApiHistoryDetail.vue index 497fef1732..dd941631a9 100644 --- a/frontend/src/business/components/history/api/ApiHistoryDetail.vue +++ b/frontend/src/business/components/history/api/ApiHistoryDetail.vue @@ -119,7 +119,6 @@ export default { } if (diffValue.body_form) { let form = (JSON.parse(diffValue.body_form)).root; - this.removeBlankLines(form); this.detail.body.form = form; this.detail.headerId = getUUID(); } diff --git a/frontend/src/business/components/history/api/ApiHttpRequestParams.vue b/frontend/src/business/components/history/api/ApiHttpRequestParams.vue index 30fe275226..0d03184dd1 100644 --- a/frontend/src/business/components/history/api/ApiHttpRequestParams.vue +++ b/frontend/src/business/components/history/api/ApiHttpRequestParams.vue @@ -20,15 +20,15 @@ - + - +

-        
+        
       
@@ -120,7 +120,7 @@ export default { this.activeBody = "json"; } if (this.request.body.form) { - this.activeBody = "form"; + this.activeBody = "form-data"; } if (this.request.body.raw_1 || this.request.body.raw_2) { this.activeBody = "raw"; @@ -137,7 +137,7 @@ export default { this.activeBody = "json"; } if (this.request.body.form) { - this.activeBody = "form"; + this.activeBody = "form-data"; } if (this.request.body.raw_1 || this.request.body.raw_2) { this.activeBody = "raw";