Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
c708e619e9 | |||
2cceb3c929 | |||
aee8704691 | |||
43af60237b |
@ -1,3 +1,7 @@
|
|||||||
|
### **5.7.2** (2022-07-13)
|
||||||
|
|
||||||
|
- #135
|
||||||
|
|
||||||
### **5.7.1** (2022-07-11)
|
### **5.7.1** (2022-07-11)
|
||||||
|
|
||||||
- #134
|
- #134
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "keycloakify",
|
"name": "keycloakify",
|
||||||
"version": "5.7.1",
|
"version": "5.7.2",
|
||||||
"description": "Keycloak theme generator for Reacts app",
|
"description": "Keycloak theme generator for Reacts app",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -6,7 +6,7 @@ import type { KcContextBase } from "../getKcContext/KcContextBase";
|
|||||||
import { getMsg } from "../i18n";
|
import { getMsg } from "../i18n";
|
||||||
|
|
||||||
export const Info = memo(({ kcContext, ...props }: { kcContext: KcContextBase.Info } & KcProps) => {
|
export const Info = memo(({ kcContext, ...props }: { kcContext: KcContextBase.Info } & KcProps) => {
|
||||||
const { msg } = getMsg(kcContext);
|
const { msg, msgStr } = getMsg(kcContext);
|
||||||
|
|
||||||
assert(kcContext.message !== undefined);
|
assert(kcContext.message !== undefined);
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ export const Info = memo(({ kcContext, ...props }: { kcContext: KcContextBase.In
|
|||||||
{message.summary}
|
{message.summary}
|
||||||
|
|
||||||
{requiredActions !== undefined && (
|
{requiredActions !== undefined && (
|
||||||
<b>{requiredActions.map(requiredAction => msg(`requiredAction.${requiredAction}` as const)).join(",")}</b>
|
<b>{requiredActions.map(requiredAction => msgStr(`requiredAction.${requiredAction}` as const)).join(",")}</b>
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
{!skipLink && pageRedirectUri !== undefined ? (
|
{!skipLink && pageRedirectUri !== undefined ? (
|
||||||
|
Reference in New Issue
Block a user