From 32ca775b7582ba02c32f59c3064cd894ebb58571 Mon Sep 17 00:00:00 2001
From: Alex Paxton
Contact your Administrator for assistance.
+
+
+ username: {name}
+
+ provider: {provider}
+
+ scheme: {scheme}
+
+
@@ -37,6 +47,9 @@ const Purgatory = ({currentOrganization, role}) => const {shape, string} = PropTypes Purgatory.propTypes = { + name: string.isRequired, + provider: string.isRequired, + scheme: string.isRequired, currentOrganization: shape({ id: string.isRequired, name: string.isRequired, @@ -44,7 +57,12 @@ Purgatory.propTypes = { role: string.isRequired, } -const mapStateToProps = ({auth: {me: {currentOrganization, role}}}) => ({ +const mapStateToProps = ({ + auth: {me: {name, provider, scheme, currentOrganization, role}}, +}) => ({ + name, + provider, + scheme, currentOrganization, role, }) diff --git a/ui/src/style/pages/auth-page.scss b/ui/src/style/pages/auth-page.scss index 52634399fb..e34d97f537 100644 --- a/ui/src/style/pages/auth-page.scss +++ b/ui/src/style/pages/auth-page.scss @@ -92,7 +92,7 @@ min-width: 400px; background-color: $g3-castle; border-radius: 4px; - height: 200px; + min-height: 200px; padding: 30px; display: flex; flex-direction: column; @@ -105,4 +105,8 @@ > p { text-align: center; } + + hr { + width: 100%; + } }