Commit d99da119 authored by tom's avatar tom

dont shorten state data

parent 14983e6f
...@@ -119,7 +119,7 @@ const TxDecodedInputData = () => { ...@@ -119,7 +119,7 @@ const TxDecodedInputData = () => {
bgColor={ bgColor } bgColor={ bgColor }
fontWeight={ 600 } fontWeight={ 600 }
> >
Indexed? Inde<wbr/>xed?
</GridItem> </GridItem>
<GridItem <GridItem
pr={ PADDING } pr={ PADDING }
......
...@@ -8,7 +8,6 @@ import { ...@@ -8,7 +8,6 @@ import {
import React from 'react'; import React from 'react';
import type { TTxStateItemStorage } from 'data/txState'; import type { TTxStateItemStorage } from 'data/txState';
import HashStringShortenDynamic from 'ui/shared/HashStringShortenDynamic';
const TxStateStorageItem = ({ storageItem }: {storageItem: TTxStateItemStorage}) => { const TxStateStorageItem = ({ storageItem }: {storageItem: TTxStateItemStorage}) => {
const gridData = [ const gridData = [
...@@ -49,8 +48,8 @@ const TxStateStorageItem = ({ storageItem }: {storageItem: TTxStateItemStorage}) ...@@ -49,8 +48,8 @@ const TxStateStorageItem = ({ storageItem }: {storageItem: TTxStateItemStorage})
{ OPTIONS.map((option) => <option key={ option } value={ option }>{ option }</option>) } { OPTIONS.map((option) => <option key={ option } value={ option }>{ option }</option>) }
</Select> </Select>
) } ) }
<Box fontWeight={{ base: 400, lg: 500 }} overflow="hidden" whiteSpace="nowrap" maxW="100%"> <Box fontWeight={{ base: 400, lg: 500 }} maxW="100%">
<HashStringShortenDynamic hash={ item.value }/> { item.value }
</Box> </Box>
</GridItem> </GridItem>
</React.Fragment> </React.Fragment>
......
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