From 2a4c67d245263ec48094a5642dd0dbadef49e3a2 Mon Sep 17 00:00:00 2001 From: George J Padayatti Date: Fri, 17 Nov 2023 02:56:26 +0530 Subject: [PATCH] Upd: Enable IDP login if configured Signed-off-by: George J Padayatti --- src/Components/Login/Login.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Components/Login/Login.jsx b/src/Components/Login/Login.jsx index dcb1386b..e9f827f1 100644 --- a/src/Components/Login/Login.jsx +++ b/src/Components/Login/Login.jsx @@ -240,8 +240,9 @@ class Login extends Component { - {store.idpConfig !== undefined || store.idpConfig !== null ? ( + {!(store.idpConfig === undefined || store.idpConfig === null) ? (
+ {console.log(store.idpConfig)} Login with {data.name}
) : null}