Compare commits

...

2 Commits

Author SHA1 Message Date
fbc92da47d Release candidate 2023-06-19 02:42:53 +02:00
519c69cb79 #359: Add log for debugging issue with Keycloak 11.0.2 2023-06-19 02:42:22 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "keycloakify",
"version": "7.13.1",
"version": "7.13.2-rc.0",
"description": "Create Keycloak themes using React",
"repository": {
"type": "git",

View File

@ -34,6 +34,8 @@
<#-- https://github.com/keycloakify/keycloakify/pull/359 Compat with Keycloak prior v12 -->
<#if !messagesPerField.existsError??>
/* Consider updating to Keycloak v12 or newer */
<#-- https://github.com/keycloakify/keycloakify/pull/218 -->
<#if '${fieldName}' == 'username' || '${fieldName}' == 'password'>
@ -42,6 +44,7 @@
<#attempt>
<#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('username')>
<#recover>
/* There was an FTL error calling messagesPerField.exists('username') */
<#assign doExistMessageForUsernameOrPassword = true>
</#attempt>
@ -49,6 +52,7 @@
<#attempt>
<#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('password')>
<#recover>
/* There was an FTL error calling messagesPerField.exists('password') */
<#assign doExistMessageForUsernameOrPassword = true>
</#attempt>
</#if>