File tree 2 files changed +10
-6
lines changed
plugins/auth-server/components/Clients
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"actions" : {
3
3
"accept" : " Accept" ,
4
- "add" : " Add" ,
4
+ "finish" : " Finish"
5
+ , "add" : " Add" ,
5
6
"add_ldap_configuration" : " Add LDAP Configuration" ,
6
7
"add_mapping" :" Add Mapping" ,
7
8
"add_property" : " Add property" ,
Original file line number Diff line number Diff line change @@ -428,6 +428,7 @@ function ClientWizardForm({
428
428
</ CardBody >
429
429
< CardFooter className = "p-4 bt-0" >
430
430
< div className = "d-flex" >
431
+ < div style = { { flex :1 } } >
431
432
{ currentStep !== sequence [ 0 ] && (
432
433
< Button
433
434
type = "button"
@@ -440,31 +441,33 @@ function ClientWizardForm({
440
441
{ t ( 'actions.previous' ) }
441
442
</ Button >
442
443
) }
444
+ </ div >
445
+ < div style = { { flex :1 , justifyContent :"flex-end" , display :"flex" } } >
443
446
{ currentStep !== sequence [ sequence . length - 1 ] && (
444
447
< Button
445
448
type = "button"
446
449
color = { `primary-${ selectedTheme } ` }
447
450
onClick = { nextStep }
448
451
style = { applicationStyle . buttonStyle }
449
- className = "ml-auto px-4"
452
+ className = "px-4"
450
453
>
451
454
{ t ( 'actions.next' ) }
452
455
< i className = "fa fa-angle-right ml-2" > </ i >
453
456
</ Button >
454
457
) }
455
- { currentStep === sequence [ sequence . length - 1 ] &&
456
- ! viewOnly &&
458
+ { ! viewOnly &&
457
459
hasPermission ( permissions , CLIENT_WRITE ) && (
458
460
< Button
459
461
type = "button"
460
462
color = { `primary-${ selectedTheme } ` }
461
- className = "ml-auto px-4"
463
+ className = "px-4 ml-2 "
462
464
onClick = { toggle }
463
465
style = { applicationStyle . buttonStyle }
464
466
>
465
- { t ( 'actions.apply ' ) }
467
+ { t ( 'actions.finish ' ) }
466
468
</ Button >
467
469
) }
470
+ </ div >
468
471
</ div >
469
472
</ CardFooter >
470
473
< Button
You can’t perform that action at this time.
0 commit comments