fixed realm roles breadcrum (#3239)

Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
agagancarczyk 2022-08-31 09:11:24 +01:00 committed by GitHub
parent d81164e371
commit 8f08101d9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -21,6 +21,7 @@
"deleteRole": "Delete this role",
"inheritedFrom": "Inherited from",
"roleList": "Role list",
"realmRolesList": "Realm roles",
"searchFor": "Search role by name",
"generalSettings": "General Settings",
"capabilityConfig": "Capability config",

View file

@ -8,7 +8,7 @@ export type RealmRolesParams = { realm: string };
export const RealmRolesRoute: RouteDef = {
path: "/:realm/roles",
component: lazy(() => import("../RealmRolesSection")),
breadcrumb: (t) => t("roles:roleList"),
breadcrumb: (t) => t("roles:realmRolesList"),
access: "view-realm",
};