Commit a536d876 authored by tom goriunov's avatar tom goriunov Committed by GitHub

Long 'Call' field value breaks responsive UI on Transaction details page (#1233)

Fixes #1219
parent c175ca12
......@@ -19,7 +19,7 @@ const Item = ({ label, text, isLoading }: { label: string; text: string; isLoadi
<Skeleton fontWeight={ 600 } w={{ base: 'auto', lg: '80px' }} flexShrink={ 0 } isLoaded={ !isLoading }>
{ label }
</Skeleton >
<Skeleton isLoaded={ !isLoading }>{ text }</Skeleton>
<Skeleton isLoaded={ !isLoading } whiteSpace="pre-wrap">{ text }</Skeleton>
</Flex>
);
};
......
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