Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
0965f8648e | |||
98974b4367 | |||
597bcadd9e |
@ -1,3 +1,7 @@
|
|||||||
|
### **0.3.2** (2021-03-21)
|
||||||
|
|
||||||
|
- Fix broken previous release
|
||||||
|
|
||||||
### **0.3.1** (2021-03-21)
|
### **0.3.1** (2021-03-21)
|
||||||
|
|
||||||
- kcHeaderClass can be updated after initial mount
|
- kcHeaderClass can be updated after initial mount
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "keycloakify",
|
"name": "keycloakify",
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"description": "Keycloak theme generator for Reacts app",
|
"description": "Keycloak theme generator for Reacts app",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -27,7 +27,6 @@ export type TemplateProps = {
|
|||||||
infoNode?: ReactNode;
|
infoNode?: ReactNode;
|
||||||
} & { kcContext: KcContext.Template; } & KcTemplateProps;
|
} & { kcContext: KcContext.Template; } & KcTemplateProps;
|
||||||
|
|
||||||
|
|
||||||
export const Template = memo((props: TemplateProps) => {
|
export const Template = memo((props: TemplateProps) => {
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@ -137,7 +136,7 @@ export const Template = memo((props: TemplateProps) => {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}, [props.kcHeaderClass]);
|
}, [props.kcHtmlClass]);
|
||||||
|
|
||||||
if (!isExtraCssLoaded) {
|
if (!isExtraCssLoaded) {
|
||||||
return null;
|
return null;
|
||||||
|
Reference in New Issue
Block a user