File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
src/views/tenant/administration Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { WizardTableField } from 'src/components/tables'
8
8
import { TitleButton } from 'src/components/buttons'
9
9
import PropTypes from 'prop-types'
10
10
import { useLazyGenericGetRequestQuery , useLazyGenericPostRequestQuery } from 'src/store/api/app'
11
+ import { CippCodeBlock } from 'src/components/utilities'
11
12
12
13
const Error = ( { name } ) => (
13
14
< Field
@@ -145,6 +146,12 @@ const GDAPInviteWizard = () => {
145
146
{ postResults . data . Results . map ( ( message , idx ) => {
146
147
return < li key = { idx } > { message } </ li >
147
148
} ) }
149
+ < CippCodeBlock
150
+ code = { postResults . data . Invite . InviteUrl }
151
+ showLineNumbers = { false }
152
+ wrapLongLines = { true }
153
+ language = "text"
154
+ />
148
155
</ CCallout >
149
156
) }
150
157
< hr className = "my-4" />
Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ const GDAPRoleWizard = () => {
168
168
return < li key = { idx } > { message } </ li >
169
169
} ) }
170
170
</ CCallout >
171
- < Link to = "/tenant/administration/gdap" >
172
- < CButton > Start GDAP Migration </ CButton >
171
+ < Link to = "/tenant/administration/gdap-invite " >
172
+ < CButton > Create GDAP Invite </ CButton >
173
173
</ Link >
174
174
</ >
175
175
) }
You can’t perform that action at this time.
0 commit comments