Skip to content

Commit

Permalink
fix(ui): set transactions root and witness root length no limit
Browse files Browse the repository at this point in the history
  • Loading branch information
duanyytop committed Jun 3, 2019
1 parent 2ba5406 commit 775b6bc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion web/src/pages/BlockDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,17 @@ export default (props: React.PropsWithoutRef<RouteComponentProps<{ hash: string
</div>
<div>
{BlockRootInfoItems.map(item => {
return item && <SimpleLabel key={item.label} image={item.image} label={item.label} value={item.value} />
return (
item && (
<SimpleLabel
key={item.label}
image={item.image}
label={item.label}
value={item.value}
lengthNoLimit
/>
)
)
})}
</div>
</BlockCommonContent>
Expand Down

0 comments on commit 775b6bc

Please sign in to comment.