fixed subheading (#2868)
Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
parent
4ec40a52a6
commit
c4cd7c376e
2 changed files with 6 additions and 1 deletions
|
@ -43,6 +43,7 @@
|
||||||
"chooseAMapperType": "Choose a mapper type",
|
"chooseAMapperType": "Choose a mapper type",
|
||||||
"addPredefinedMappers": "Add predefined mappers",
|
"addPredefinedMappers": "Add predefined mappers",
|
||||||
"predefinedMappingDescription": "Choose any of the predefined mappings from this table",
|
"predefinedMappingDescription": "Choose any of the predefined mappings from this table",
|
||||||
|
"configureMappingDescription": "Choose any of the mappings from this table",
|
||||||
"mappingTable": "Table with predefined mapping",
|
"mappingTable": "Table with predefined mapping",
|
||||||
"scope": "Scope",
|
"scope": "Scope",
|
||||||
"roleMappingUpdatedSuccess": "Role mapping updated",
|
"roleMappingUpdatedSuccess": "Role mapping updated",
|
||||||
|
|
|
@ -93,7 +93,11 @@ export const AddMapperDialog = (props: AddMapperDialogProps) => {
|
||||||
<Text component={TextVariants.h1}>
|
<Text component={TextVariants.h1}>
|
||||||
{isBuiltIn ? t("addPredefinedMappers") : t("emptySecondaryAction")}
|
{isBuiltIn ? t("addPredefinedMappers") : t("emptySecondaryAction")}
|
||||||
</Text>
|
</Text>
|
||||||
<Text>{t("predefinedMappingDescription")}</Text>
|
<Text>
|
||||||
|
{isBuiltIn
|
||||||
|
? t("predefinedMappingDescription")
|
||||||
|
: t("configureMappingDescription")}
|
||||||
|
</Text>
|
||||||
</TextContent>
|
</TextContent>
|
||||||
}
|
}
|
||||||
isOpen={props.open}
|
isOpen={props.open}
|
||||||
|
|
Loading…
Reference in a new issue