Skip to content

Commit

Permalink
Long 'Call' field value breaks responsive UI on Transaction details p…
Browse files Browse the repository at this point in the history
…age (#1233)

Fixes #1219
  • Loading branch information
tom2drum authored Oct 2, 2023
1 parent c175ca1 commit a536d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/shared/logs/LogDecodedInputDataHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
);
};
Expand Down

0 comments on commit a536d87

Please sign in to comment.