Commit 35239ea7 authored by Xhavit Fu's avatar Xhavit Fu Committed by 陈帅

fix #2558, breadcrumbList doesn't work in PageHeaderWrapper (#2955)

parent 15b499dc
......@@ -21,9 +21,9 @@ const PageHeaderWrapper = ({ children, contentWidth, wrapperClassName, top, ...r
linkElement={Link}
itemRender={item => {
if (item.locale) {
return <FormattedMessage id={item.locale} defaultMessage={item.name} />;
return <FormattedMessage id={item.locale} defaultMessage={item.title} />;
}
return item.name;
return item.title;
}}
/>
)}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment