Add timeout to saml-post-form

This commit is contained in:
Oliver Traber 2023-08-25 21:36:03 +02:00
parent 26648b8971
commit 4cc7f0bbbb
Signed by: Bluemedia
GPG Key ID: C0674B105057136C
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export default defineComponent({
SAMLResponse: this.context.samlPost.SAMLResponse,
RelayState: this.context.samlPost.relayState,
};
formPost(this.context.samlPost.url, postData);
setTimeout(() => formPost(this.context.samlPost.url, postData), 1000);
},
});
</script>