rebase
This commit is contained in:
parent
335e408d28
commit
78a22cd5b8
2 changed files with 10 additions and 4 deletions
|
@ -27,8 +27,9 @@ import { PartialImportDialog } from "./PartialImport";
|
||||||
import { RealmSettingsThemesTab } from "./ThemesTab";
|
import { RealmSettingsThemesTab } from "./ThemesTab";
|
||||||
import { RealmSettingsEmailTab } from "./EmailTab";
|
import { RealmSettingsEmailTab } from "./EmailTab";
|
||||||
import { KeysListTab } from "./KeysListTab";
|
import { KeysListTab } from "./KeysListTab";
|
||||||
import type { KeyMetadataRepresentation } from "keycloak-admin/lib/defs/keyMetadataRepresentation";
|
import { KeyMetadataRepresentation } from "keycloak-admin/lib/defs/keyMetadataRepresentation";
|
||||||
import type ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation";
|
import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation";
|
||||||
|
import { KeysProviderTab } from "./KeysProvidersTab";
|
||||||
|
|
||||||
type RealmSettingsHeaderProps = {
|
type RealmSettingsHeaderProps = {
|
||||||
onChange: (value: boolean) => void;
|
onChange: (value: boolean) => void;
|
||||||
|
@ -243,6 +244,13 @@ export const RealmSettingsSection = () => {
|
||||||
>
|
>
|
||||||
<KeysListTab keys={keys} realmComponents={realmComponents} />
|
<KeysListTab keys={keys} realmComponents={realmComponents} />
|
||||||
</Tab>
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
id="evaluate"
|
||||||
|
eventKey={1}
|
||||||
|
title={<TabTitleText>{t("providers")}</TabTitleText>}
|
||||||
|
>
|
||||||
|
{/* <KeysProviderTab /> */}
|
||||||
|
</Tab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</Tab>
|
</Tab>
|
||||||
</KeycloakTabs>
|
</KeycloakTabs>
|
||||||
|
|
|
@ -38,8 +38,6 @@
|
||||||
"type": "Type",
|
"type": "Type",
|
||||||
"kid": "Kid",
|
"kid": "Kid",
|
||||||
"provider": "Provider",
|
"provider": "Provider",
|
||||||
"providerDescription": "Provider description",
|
|
||||||
"name": "Name",
|
|
||||||
"publicKeys": "Public keys",
|
"publicKeys": "Public keys",
|
||||||
"certificate": "Certificate",
|
"certificate": "Certificate",
|
||||||
"userRegistration": "User registration",
|
"userRegistration": "User registration",
|
||||||
|
|
Loading…
Reference in a new issue