Compare commits

...

6 Commits

Author SHA1 Message Date
a501af669c Update changelog v1.1.4 2021-06-15 12:59:00 +00:00
85343fcefe Bump version (changelog ignore) 2021-06-15 14:49:46 +02:00
b11dfde6e6 Merge pull request #12 from InseeFrLab/email-typo
Fix typo on email
2021-06-15 14:38:27 +02:00
38d2108f02 Fix typo on email 2021-06-15 09:47:22 +02:00
2b67544517 Update changelog v1.1.3 2021-06-14 22:36:25 +00:00
0d443ca88e Add missing key in Login for providers 2021-06-15 00:31:20 +02:00
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,14 @@
### **1.1.4** (2021-06-15)
- Merge pull request #12 from InseeFrLab/email-typo
Fix typo on email
- Fix typo on email
### **1.1.3** (2021-06-14)
- Add missing key in Login for providers
### **1.1.2** (2021-06-14)

View File

@ -1,6 +1,6 @@
{
"name": "keycloakify",
"version": "1.1.2",
"version": "1.1.4",
"description": "Keycloak theme generator for Reacts app",
"repository": {
"type": "git",

View File

@ -13,7 +13,7 @@
<#recover>
</#attempt>
})(),
"emal": (function (){
"email": (function (){
<#attempt>
return "${user.email!''}" || undefined;
<#recover>
@ -64,4 +64,4 @@
},
}
</script>
</script>

View File

@ -120,7 +120,7 @@ export const Login = memo(({ kcContext, ...props }: { kcContext: KcContext.Login
<ul className={cx(props.kcFormSocialAccountListClass, social.providers.length > 4 && props.kcFormSocialAccountDoubleListClass)}>
{
social.providers.map(p =>
<li className={cx(props.kcFormSocialAccountListLinkClass)}>
<li key={p.providerId} className={cx(props.kcFormSocialAccountListLinkClass)}>
<a href={p.loginUrl} id={`zocial-${p.alias}`} className={cx("zocial", p.providerId)}>
<span>{p.displayName}</span>
</a>