Skip to content

Commit

Permalink
Merge pull request #2176 from blockscout/fe-2175
Browse files Browse the repository at this point in the history
Display shortened address for proxy contracts
  • Loading branch information
isstuev authored Aug 16, 2024
2 parents fc0ee3b + c099afd commit bc1ebf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/shared/entities/address/AddressEntityContentProxy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const AddressEntityContentProxy = (props: ContentProps) => {
<Box display="inline-flex" w="100%">
<EntityBase.Content
{ ...props }
truncation={ implementationName || props.address.name ? 'tail' : 'dynamic' }
truncation={ implementationName || props.address.name ? 'tail' : props.truncation }
text={ implementationName || props.address.name || props.address.hash }
/>
</Box>
Expand Down

0 comments on commit bc1ebf3

Please sign in to comment.