Skip to content

Commit

Permalink
Merge pull request #1098 from DarkFlorist/fix-fuses
Browse files Browse the repository at this point in the history
fix ens fuses setting to be visible
  • Loading branch information
KillariDev authored Aug 9, 2024
2 parents 370cb5f + a89fc5e commit dc34f83
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ const VisualizeEnsEvent = ({ ensEvent, textColor, editEnsNamedHashCallBack, rena
fuses to
</p>
</div>
<div class = 'log-cell'>
{ ensEvent.logInformation.fuses.map((fuse) => {
<div class = 'textbox' style = 'white-space: normal;'>
<p class = 'paragraph' style = 'color: var(--subtitle-text-color)'>{ fuse }</p>
<div class = 'log-cell' style = 'display: block;'>
{ ensEvent.logInformation.fuses.map((fuse) => <>
<div class = 'textbox' style = 'white-space: nowrap; background-color: var(--alpha-015); margin: 5px'>
<p class = 'paragraph'> { fuse }</p>
</div>
}) }
</>) }
</div>
</div>
case 'ENSNameChanged': return <div class = 'ens-table'>
Expand Down

0 comments on commit dc34f83

Please sign in to comment.