Skip to content

Commit 7e234a5

Browse files
authored
fix(EntityStatus): show title for text part only (#1608)
1 parent 89798f0 commit 7e234a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/EntityStatus/EntityStatus.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function EntityStatus({
8282
return name && <span className={b('name')}>{name}</span>;
8383
};
8484
return (
85-
<div className={b(null, className)} title={name}>
85+
<div className={b(null, className)}>
8686
{iconPath ? renderStatusLink(iconPath) : renderIcon()}
8787
{label && (
8888
<span title={label} className={b('label', {size, state: status.toLowerCase()})}>
@@ -91,7 +91,7 @@ export function EntityStatus({
9191
)}
9292
{(path || name) && (
9393
<div className={b('wrapper', {'with-button': hasClipboardButton})}>
94-
<span className={b('link', {'with-left-trim': withLeftTrim})}>
94+
<span className={b('link', {'with-left-trim': withLeftTrim})} title={name}>
9595
{renderLink()}
9696
</span>
9797
{hasClipboardButton && (

0 commit comments

Comments
 (0)