From 1948e2a4766015ee9e65a2899b8fc72ebe349100 Mon Sep 17 00:00:00 2001 From: David Leimroth Date: Mon, 7 Feb 2022 17:32:10 +0100 Subject: [PATCH] fixed updateSSOSettings actions not being called because of missing sso/ prefix --- client/pages/config/sso.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/pages/config/sso.vue b/client/pages/config/sso.vue index 1a81c2beb..101a2aa40 100644 --- a/client/pages/config/sso.vue +++ b/client/pages/config/sso.vue @@ -107,10 +107,9 @@ export default { }) }, saveSSOSettings(payload) { - console.log(this) this.updatingSSOSettings = true this.$store - .dispatch('updateSSOSettings', payload) + .dispatch('sso/updateSSOSettings', payload) .then((success) => { console.log('Updated SSO Settings', success) this.updatingSSOSettings = false