summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/client/src/pages/api-console.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/client/src/pages/api-console.vue b/packages/client/src/pages/api-console.vue
index 594778e539..16018be712 100644
--- a/packages/client/src/pages/api-console.vue
+++ b/packages/client/src/pages/api-console.vue
@@ -66,7 +66,8 @@ export default defineComponent({
methods: {
send() {
this.sending = true;
- os.api(this.endpoint, JSON5.parse(this.body)).then(res => {
+ const body = JSON5.parse(this.body);
+ os.api(this.endpoint, body, body.i || this.withCredential ? undefined : null).then(res => {
this.sending = false;
this.res = JSON5.stringify(res, null, 2);
}, err => {