Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions web/messages/en/openid.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"openid_empty_title": "You don't have any OpenID Apps.",
"openid_empty_subtitle": "To add one, click the button below.",
"openid_add": "Add new OpenID App",
"openid_edit": "Edit OpenID App",
"openid_table_top_title": "All apps",
"openid_consent_title": "{name} would like to",
"openid_consent_scope_openid": "Use OpenID.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const CeOpenIdClientModal = () => {
return (
<Modal
id="ce-openid-client-modal"
title={'Add OpenID application'}
title={modalData?.openIdClient ? m.openid_edit() : m.openid_add()}
isOpen={isOpen}
onClose={() => setOpen(false)}
afterClose={() => {
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/settings/SettingsLdapPage/SettingsLdapPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,15 +316,15 @@ const PageForm = () => {
<MarkedSection icon={IconKind.Sync}>
<MarkedSectionHeader
title="LDAP synchronization"
description="Control how Defguard synchronizes users with LDAP — disable sync, import users from LDAP, or keep both systems updated automatically."
description="Control how Defguard synchronizes users with LDAP."
/>
<form.AppField name="ldap_sync_enabled">
{(field) => (
<field.FormInteractiveBlock
variant={'radio'}
value={false}
title={`One-way synchronization`}
content={`Users are imported from LDAP into Defguard. LDAP remains the source of truth and updates in the directory overwrite local data in Defguard.`}
content={`Changes made to users in Defguard are propagated to your LDAP directory.`}
/>
)}
</form.AppField>
Expand Down
Loading