mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
style: fix lint
This commit is contained in:
parent
a7d335ec7a
commit
e7fb3447a2
@ -44,7 +44,7 @@ export default class Badge extends React.Component<BadgeProps, any> {
|
|||||||
['count', 'prefixCls', 'overflowCount', 'className', 'style', 'children', 'dot', 'status', 'text']
|
['count', 'prefixCls', 'overflowCount', 'className', 'style', 'children', 'dot', 'status', 'text']
|
||||||
);
|
);
|
||||||
const isDot = dot || status;
|
const isDot = dot || status;
|
||||||
|
const realCount = count;
|
||||||
count = count > overflowCount ? `${overflowCount}+` : count;
|
count = count > overflowCount ? `${overflowCount}+` : count;
|
||||||
|
|
||||||
// dot mode don't need count
|
// dot mode don't need count
|
||||||
@ -84,7 +84,7 @@ export default class Badge extends React.Component<BadgeProps, any> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span {...restProps} className={badgeCls} title={this.props.count}>
|
<span {...restProps} className={badgeCls} title={realCount}>
|
||||||
{children}
|
{children}
|
||||||
<Animate
|
<Animate
|
||||||
component=""
|
component=""
|
||||||
|
Loading…
Reference in New Issue
Block a user