forked from FoundKeyGang/FoundKey
Fix(client): APIコンソールで with credential がオフだとiが付与されないように (#8038)
This commit is contained in:
parent
8a3f860213
commit
b1bd7307bb
1 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,8 @@ export default defineComponent({
|
||||||
methods: {
|
methods: {
|
||||||
send() {
|
send() {
|
||||||
this.sending = true;
|
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.sending = false;
|
||||||
this.res = JSON5.stringify(res, null, 2);
|
this.res = JSON5.stringify(res, null, 2);
|
||||||
}, err => {
|
}, err => {
|
||||||
|
|
Loading…
Reference in a new issue