From c98a8ee77678b00caeacb65ee073ed1e8a280dc5 Mon Sep 17 00:00:00 2001 From: David Leimroth Date: Mon, 7 Feb 2022 17:38:31 +0100 Subject: [PATCH] fixed payload passed to sso/updateSSOSettings --- client/pages/config/sso.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/pages/config/sso.vue b/client/pages/config/sso.vue index 101a2aa40..ab17472ff 100644 --- a/client/pages/config/sso.vue +++ b/client/pages/config/sso.vue @@ -89,6 +89,7 @@ export default { }, methods: { updateSSOIssuer(val) { + this.oidc.issuer = val return this.updateSSOSettings({ issuer: val @@ -109,7 +110,7 @@ export default { saveSSOSettings(payload) { this.updatingSSOSettings = true this.$store - .dispatch('sso/updateSSOSettings', payload) + .dispatch('sso/updateSSOSettings', {oidc: this.oidc, permissions: this.permissions}) .then((success) => { console.log('Updated SSO Settings', success) this.updatingSSOSettings = false