Fix(client): iをパラメーターに含めてもデフォルトのiが付与されるのを修正 (#8039)

This commit is contained in:
futchitwo 2021-12-05 21:52:57 +09:00 committed by GitHub
parent e804a299e0
commit 7eedb9b19b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 => {