Commit d99da119 authored by tom's avatar tom

dont shorten state data

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