From 8515052e1a6de2de56effbc61c73d3aa80169a93 Mon Sep 17 00:00:00 2001 From: Aijana Schumann Date: Mon, 15 Feb 2021 18:22:28 +0100 Subject: Add OAuth support to odlux Extend odlux to support oauth, support external login provider for sign-in Issue-ID: CCSDK-3167 Signed-off-by: Aijana Schumann Change-Id: Id5772e0026fa7ebda22c41c2620a7868598f41aa --- sdnr/wt/odlux/framework/src/views/frame.tsx | 40 ++++++++++++++--------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'sdnr/wt/odlux/framework/src/views/frame.tsx') diff --git a/sdnr/wt/odlux/framework/src/views/frame.tsx b/sdnr/wt/odlux/framework/src/views/frame.tsx index c8e24fdb9..b4cc43e0b 100644 --- a/sdnr/wt/odlux/framework/src/views/frame.tsx +++ b/sdnr/wt/odlux/framework/src/views/frame.tsx @@ -80,32 +80,32 @@ class FrameComponent extends React.Component{ } ( - - - + + + )} /> ( - - - + + + )} /> {process.env.NODE_ENV === "development" ? ( - - - + + + )} /> : null} ( - - - - )} /> - {Object.keys(registrations).map(p => { - const application = registrations[p]; - return ( ( - - - - )} />) + + + + )} /> + { Object.keys(registrations).map(p => { + const application = registrations[p]; + return ( ( + + + + )} />) })} -- cgit 1.2.3-korg