Skip to content

Commit

Permalink
fix: rename class name from text-overflow to textOverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Sep 17, 2019
1 parent a12b582 commit 747fdcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/components/Addresses/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Addresses = ({
display: 'flex',
}}
>
<span className="text-overflow">{item.address.slice(0, -6)}</span>
<span className="textOverflow">{item.address.slice(0, -6)}</span>
<span>{item.address.slice(-6)}</span>
</div>
)
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-ui/src/components/Transaction/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const inputColumns: IColumn[] = [
minWidth: 100,
maxWidth: 200,
onRender: (item: any) => (
<span title={item.lockHash || 'none'} className="text-overflow">
<span title={item.lockHash || 'none'} className="textOverflow">
{item.lockHash || 'none'}
</span>
),
Expand All @@ -30,7 +30,7 @@ const inputColumns: IColumn[] = [
onRender: (item: any) => {
const text = item.previousOutput ? `${item.previousOutput.txHash}[${item.previousOutput.index}]` : 'none'
return (
<span title={text} className="text-overflow">
<span title={text} className="textOverflow">
{text}
</span>
)
Expand Down

0 comments on commit 747fdcf

Please sign in to comment.