Commit 74d4fce9 authored by tom's avatar tom

block difficulty fix layout

parent 13fc7949
...@@ -269,12 +269,16 @@ const BlockDetails = () => { ...@@ -269,12 +269,16 @@ const BlockDetails = () => {
<DetailsInfoItem <DetailsInfoItem
title="Difficulty" title="Difficulty"
hint={ `Block difficulty for ${ validatorTitle }, used to calibrate block generation time.` } hint={ `Block difficulty for ${ validatorTitle }, used to calibrate block generation time.` }
whiteSpace="normal"
wordBreak="break-all"
> >
{ BigNumber(data.difficulty).toFormat() } { BigNumber(data.difficulty).toFormat() }
</DetailsInfoItem> </DetailsInfoItem>
<DetailsInfoItem <DetailsInfoItem
title="Total difficulty" title="Total difficulty"
hint="Total difficulty of the chain until this block." hint="Total difficulty of the chain until this block."
whiteSpace="normal"
wordBreak="break-all"
> >
{ BigNumber(data.total_difficulty).toFormat() } { BigNumber(data.total_difficulty).toFormat() }
</DetailsInfoItem> </DetailsInfoItem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment