Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/client/components/parcel/ParcelList/ParcelList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ class ParcelList extends React.Component<Props, State> {
{address && address === parcel.signer ? (
parcel.signer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a title attribute to this line, too.

) : (
<Link to={`/addr-platform/${parcel.signer}`}>{parcel.signer}</Link>
<Link title={parcel.signer} to={`/addr-platform/${parcel.signer}`}>
{parcel.signer}
</Link>
)}
</div>
</Col>
Expand All @@ -165,9 +167,12 @@ class ParcelList extends React.Component<Props, State> {
<Col md="5">
<div className="sender-receiver-container">
{address && address === (parcel.action as PaymentDoc).receiver ? (
(parcel.action as PaymentDoc).receiver
<span title={address}>{(parcel.action as PaymentDoc).receiver}</span>
) : (
<Link to={`/addr-platform/${(parcel.action as PaymentDoc).receiver}`}>
<Link
title={address}
to={`/addr-platform/${(parcel.action as PaymentDoc).receiver}`}
>
{(parcel.action as PaymentDoc).receiver}
</Link>
)}
Expand Down