From b1bd7307bb85ba8ac4d0f2df627b52c3ec5fcc72 Mon Sep 17 00:00:00 2001 From: futchitwo <74236683+futchitwo@users.noreply.github.com> Date: Sun, 5 Dec 2021 03:01:35 +0900 Subject: Fix(client): APIコンソールで with credential がオフだとiが付与されないように (#8038) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/client/src/pages/api-console.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 => { -- cgit v1.2.3-freya