Skip to content

Commit 768e997

Browse files
Merge pull request #9477 from AfraHussaindeen/master_app-logout-urls-typo
Fix typo in application backchannel logout url section
2 parents e452555 + aa98380 commit 768e997

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

.changeset/good-birds-clean.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

features/admin.applications.v1/components/forms/inbound-oidc-form.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }

modules/i18n/src/models/namespaces/applications-ns.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

modules/i18n/src/translations/en-US/portals/applications.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 " +

0 commit comments

Comments
 (0)