We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8045d20 commit 6b45eabCopy full SHA for 6b45eab
src/client/components/util/HexString/HexString.tsx
@@ -15,12 +15,12 @@ const HexString = (props: Props) => {
15
}
16
if (link) {
17
return (
18
- <span>
+ <span title={text}>
19
<Link to={link}>{`0x${length ? text.slice(0, sliceLength) + "..." : text}`}</Link>
20
</span>
21
);
22
} else {
23
- return <span>{`0x${length ? text.slice(0, sliceLength) + "..." : text}`}</span>;
+ return <span title={text}>{`0x${length ? text.slice(0, sliceLength) + "..." : text}`}</span>;
24
25
};
26
0 commit comments