chore: nav 当 label 是自定义渲染器时不要显示 title

This commit is contained in:
2betop 2022-04-07 11:52:56 +08:00
parent 485a22fe60
commit a8b0b1ac98

View File

@ -466,7 +466,7 @@ export class Navigation extends React.Component<
<a
data-id={link.__id}
data-depth={depth}
title={link?.label?.toString()}
title={typeof link?.label === 'string' ? link?.label : undefined}
onClick={this.handleClick.bind(this, link)}
style={{
paddingLeft: depth * (parseInt(indentSize as any, 10) ?? 24)