Add force break to hexstring component in order to make it leak outside parent
This commit is contained in:
parent
ff7596382f
commit
eed923915f
|
@ -5,7 +5,7 @@ type HexValueProps = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const HexValue: React.FC<HexValueProps> = ({ value }) => (
|
const HexValue: React.FC<HexValueProps> = ({ value }) => (
|
||||||
<span className="font-hash text-black">{value}</span>
|
<span className="font-hash text-black break-all">{value}</span>
|
||||||
);
|
);
|
||||||
|
|
||||||
export default HexValue;
|
export default HexValue;
|
||||||
|
|
Loading…
Reference in New Issue