Skip to content

Commit 747fdcf

Browse files
committed
fix: rename class name from text-overflow to textOverflow
1 parent a12b582 commit 747fdcf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/neuron-ui/src/components/Addresses/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const Addresses = ({
8181
display: 'flex',
8282
}}
8383
>
84-
<span className="text-overflow">{item.address.slice(0, -6)}</span>
84+
<span className="textOverflow">{item.address.slice(0, -6)}</span>
8585
<span>{item.address.slice(-6)}</span>
8686
</div>
8787
)

packages/neuron-ui/src/components/Transaction/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const inputColumns: IColumn[] = [
1818
minWidth: 100,
1919
maxWidth: 200,
2020
onRender: (item: any) => (
21-
<span title={item.lockHash || 'none'} className="text-overflow">
21+
<span title={item.lockHash || 'none'} className="textOverflow">
2222
{item.lockHash || 'none'}
2323
</span>
2424
),
@@ -30,7 +30,7 @@ const inputColumns: IColumn[] = [
3030
onRender: (item: any) => {
3131
const text = item.previousOutput ? `${item.previousOutput.txHash}[${item.previousOutput.index}]` : 'none'
3232
return (
33-
<span title={text} className="text-overflow">
33+
<span title={text} className="textOverflow">
3434
{text}
3535
</span>
3636
)

0 commit comments

Comments
 (0)