Fix section name to Configuration
This commit is contained in:
parent
d460769e83
commit
4029dac491
2 changed files with 3 additions and 3 deletions
|
@ -317,12 +317,12 @@ const MenuList = withStyles(styles, { name: "MenuList" })(
|
||||||
src={configureIcon}
|
src={configureIcon}
|
||||||
/>
|
/>
|
||||||
<Typography
|
<Typography
|
||||||
aria-label="configure"
|
aria-label="configuration"
|
||||||
className={classNames(classes.menuListItemText, {
|
className={classNames(classes.menuListItemText, {
|
||||||
[classes.menuListItemTextHide]: !isMenuSmall
|
[classes.menuListItemTextHide]: !isMenuSmall
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
{i18n.t("Configure")}
|
{i18n.t("Configuration")}
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -78,7 +78,7 @@ export const ConfigurationPage = withStyles(styles, {
|
||||||
name: "ConfigurationPage"
|
name: "ConfigurationPage"
|
||||||
})(({ classes, menu, user, onSectionClick }: ConfigurationPageProps) => (
|
})(({ classes, menu, user, onSectionClick }: ConfigurationPageProps) => (
|
||||||
<Container>
|
<Container>
|
||||||
<PageHeader title={i18n.t("Configure")} />
|
<PageHeader title={i18n.t("Configuration")} />
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
{menu
|
{menu
|
||||||
.filter(menuItem =>
|
.filter(menuItem =>
|
||||||
|
|
Loading…
Reference in a new issue