Add timeout to saml-post-form
This commit is contained in:
parent
26648b8971
commit
4cc7f0bbbb
|
@ -38,7 +38,7 @@ export default defineComponent({
|
||||||
SAMLResponse: this.context.samlPost.SAMLResponse,
|
SAMLResponse: this.context.samlPost.SAMLResponse,
|
||||||
RelayState: this.context.samlPost.relayState,
|
RelayState: this.context.samlPost.relayState,
|
||||||
};
|
};
|
||||||
formPost(this.context.samlPost.url, postData);
|
setTimeout(() => formPost(this.context.samlPost.url, postData), 1000);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue