diff --git a/spiffworkflow-frontend/src/index.css b/spiffworkflow-frontend/src/index.css index 214dd1f2..fd156c23 100644 --- a/spiffworkflow-frontend/src/index.css +++ b/spiffworkflow-frontend/src/index.css @@ -86,3 +86,11 @@ span.bjs-crumb { .markdown tbody tr:nth-of-type(odd) { background: rgba(0,0,0,.05); } + +/* Json Web Form CSS Fix - Bootstrap now requries that each li have a "list-inline-item." Also have a PR + in on this with the react-jsonschema-form repo. This is just a patch fix to allow date inputs to layout a little more cleanly */ +.list-inline>li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} diff --git a/spiffworkflow-frontend/src/routes/AuthenticationList.tsx b/spiffworkflow-frontend/src/routes/AuthenticationList.tsx index ab9789f1..6be0f054 100644 --- a/spiffworkflow-frontend/src/routes/AuthenticationList.tsx +++ b/spiffworkflow-frontend/src/routes/AuthenticationList.tsx @@ -3,6 +3,7 @@ import { Table } from 'react-bootstrap'; import ErrorContext from '../contexts/ErrorContext'; import { AuthenticationItem } from '../interfaces'; import HttpService from '../services/HttpService'; +import UserService from '../services/UserService'; export default function AuthenticationList() { const setErrorMessage = (useContext as any)(ErrorContext)[1]; @@ -13,11 +14,13 @@ export default function AuthenticationList() { const [connectProxyBaseUrl, setConnectProxyBaseUrl] = useState( null ); + const [redirectUrl, setRedirectUrl] = useState(null); useEffect(() => { const processResult = (result: any) => { setAuthenticationList(result.results); setConnectProxyBaseUrl(result.connector_proxy_base_url); + setRedirectUrl(result.redirect_url); }; HttpService.makeCallToBackend({ path: `/authentications`, @@ -34,7 +37,11 @@ export default function AuthenticationList() { {row.id}