File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed
features/admin.applications.v1/components/forms
translations/en-US/portals Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @wso2is/admin.applications.v1 " : patch
3+ " @wso2is/console " : patch
4+ " @wso2is/i18n " : patch
5+ " @wso2is/features " : patch
6+ ---
7+
8+ Fix typo in application backchannel logout url section
Original file line number Diff line number Diff line change @@ -3909,7 +3909,15 @@ export const InboundOIDCForm: FunctionComponent<InboundOIDCFormPropsInterface> =
39093909 < Divider hidden />
39103910 </ Grid . Column >
39113911 < Grid . Column mobile = { 16 } tablet = { 16 } computer = { 16 } >
3912- < Heading as = "h4" > Logout URLs</ Heading >
3912+ < Heading as = "h4" >
3913+ {
3914+ applicationConfig . inboundOIDCForm . showFrontChannelLogout
3915+ ? t ( "applications:forms.inboundOIDC.sections" +
3916+ ".logoutURLs.heading" )
3917+ : t ( "applications:forms.inboundOIDC.sections" +
3918+ ".logoutURLs.headingSingular" )
3919+ }
3920+ </ Heading >
39133921 < Divider hidden />
39143922 < Field
39153923 ref = { backChannelLogoutUrl }
Original file line number Diff line number Diff line change @@ -1674,6 +1674,7 @@ export interface ApplicationsNS {
16741674 } ;
16751675 logoutURLs : {
16761676 heading : string ;
1677+ headingSingular : string ;
16771678 fields : {
16781679 back : {
16791680 hint : string ;
Original file line number Diff line number Diff line change @@ -1996,7 +1996,8 @@ export const applications: ApplicationsNS = {
19961996 }
19971997 }
19981998 } ,
1999- heading : "PKCE"
1999+ heading : "Logout URLs" ,
2000+ headingSingular : "Logout URL"
20002001 } ,
20012002 pkce : {
20022003 description : "The default method used by {{productName}} to generate the challenge " +
You can’t perform that action at this time.
0 commit comments