From 7eedb9b19b1386d5b07bc6639a6a0170e83b8bdd Mon Sep 17 00:00:00 2001 From: futchitwo <74236683+futchitwo@users.noreply.github.com> Date: Sun, 5 Dec 2021 21:52:57 +0900 Subject: [PATCH] =?UTF-8?q?Fix(client):=20i=E3=82=92=E3=83=91=E3=83=A9?= =?UTF-8?q?=E3=83=A1=E3=83=BC=E3=82=BF=E3=83=BC=E3=81=AB=E5=90=AB=E3=82=81?= =?UTF-8?q?=E3=81=A6=E3=82=82=E3=83=87=E3=83=95=E3=82=A9=E3=83=AB=E3=83=88?= =?UTF-8?q?=E3=81=AEi=E3=81=8C=E4=BB=98=E4=B8=8E=E3=81=95=E3=82=8C?= =?UTF-8?q?=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=20(#8039)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/client/src/pages/api-console.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/pages/api-console.vue b/packages/client/src/pages/api-console.vue index 16018be71..142a3bee2 100644 --- a/packages/client/src/pages/api-console.vue +++ b/packages/client/src/pages/api-console.vue @@ -67,7 +67,7 @@ export default defineComponent({ send() { this.sending = true; const body = JSON5.parse(this.body); - os.api(this.endpoint, body, body.i || this.withCredential ? undefined : null).then(res => { + os.api(this.endpoint, body, body.i || (this.withCredential ? undefined : null)).then(res => { this.sending = false; this.res = JSON5.stringify(res, null, 2); }, err => {