@keycloakify/login-ui 250004.6.3 → 250004.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,11 @@ export function Page() {
16
16
  headerNode={
17
17
  <span
18
18
  dangerouslySetInnerHTML={{
19
- __html: kcSanitize(kcContext.messageHeader ?? kcContext.message.summary)
19
+ __html: kcSanitize(
20
+ kcContext.messageHeader
21
+ ? advancedMsgStr(kcContext.messageHeader)
22
+ : kcContext.message.summary
23
+ )
20
24
  }}
21
25
  />
22
26
  }
@@ -55,7 +55,7 @@ export function Page() {
55
55
  shouldDisplayGrid && "kcFormSocialAccountListGridClass"
56
56
  )}
57
57
  >
58
- {kcContext.organizations.map(({ alias, name }) => (
58
+ {organizations.map(({ alias, name }) => (
59
59
  <li key={alias}>
60
60
  <button
61
61
  id={`organization-${alias}`}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keycloakify/login-ui",
3
- "version": "250004.6.3",
3
+ "version": "250004.6.5",
4
4
  "description": "React implementation of Keycloak Login v2 for Keycloakify",
5
5
  "repository": {
6
6
  "type": "git",