From f377ed313ecb1da2e95789aae7e4f295cbdee549 Mon Sep 17 00:00:00 2001 From: BluemediaGER Date: Tue, 21 Feb 2023 19:05:28 +0100 Subject: [PATCH] Fix RelayState property in saml-post-form Closes #1 --- src/types/samlPostData.ts | 2 +- src/views/saml-post-form/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/samlPostData.ts b/src/types/samlPostData.ts index 6bc70c3..edc3d0a 100644 --- a/src/types/samlPostData.ts +++ b/src/types/samlPostData.ts @@ -1,5 +1,5 @@ export type SAMLPostData = { SAMLRequest?: string, SAMLResponse?: string, - relayState?: string, + RelayState?: string, } \ No newline at end of file diff --git a/src/views/saml-post-form/index.vue b/src/views/saml-post-form/index.vue index e5ea71e..c260cae 100644 --- a/src/views/saml-post-form/index.vue +++ b/src/views/saml-post-form/index.vue @@ -28,7 +28,7 @@ export default defineComponent({ const postData: SAMLPostData = { SAMLRequest: this.context.samlPost.SAMLRequest, SAMLResponse: this.context.samlPost.SAMLResponse, - relayState: this.context.samlPost.relayState, + RelayState: this.context.samlPost.relayState, }; this.formPost(this.context.samlPost.url, postData); },