mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
Removed conditional check preventing use of custom attribute names identical to built-in Keycloak attributes.
Closes #40497 Signed-off-by: Barathwaja S <sbarathwaj4@gmail.com>
This commit is contained in:
@@ -98,9 +98,7 @@ export const TranslatableField = ({
|
||||
const requiredTranslationName = `${translationPrefix}.0.value`;
|
||||
|
||||
useEffect(() => {
|
||||
if (isTranslationRequired(value, t, realm)) {
|
||||
setValue(fieldName, `\${${prefix}.${value}}`);
|
||||
}
|
||||
setValue(fieldName, `\${${prefix}.${value}}`);
|
||||
}, [value]);
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user