Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
7d9f94e4
Commit
7d9f94e4
authored
Jun 13, 2025
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix address icon tooltip content
parent
9767fc67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
AddressEntity.tsx
ui/shared/entities/address/AddressEntity.tsx
+2
-2
No files found.
ui/shared/entities/address/AddressEntity.tsx
View file @
7d9f94e4
...
@@ -68,7 +68,7 @@ const Icon = (props: IconProps) => {
...
@@ -68,7 +68,7 @@ const Icon = (props: IconProps) => {
const
isProxy
=
Boolean
(
props
.
address
.
implementations
?.
length
);
const
isProxy
=
Boolean
(
props
.
address
.
implementations
?.
length
);
const
isVerified
=
isProxy
?
props
.
address
.
is_verified
&&
props
.
address
.
implementations
?.
every
(({
name
})
=>
Boolean
(
name
))
:
props
.
address
.
is_verified
;
const
isVerified
=
isProxy
?
props
.
address
.
is_verified
&&
props
.
address
.
implementations
?.
every
(({
name
})
=>
Boolean
(
name
))
:
props
.
address
.
is_verified
;
const
contractIconName
:
EntityBase
.
IconBaseProps
[
'
name
'
]
=
props
.
address
.
is_verified
?
'
contracts/verified
'
:
'
contracts/regular
'
;
const
contractIconName
:
EntityBase
.
IconBaseProps
[
'
name
'
]
=
props
.
address
.
is_verified
?
'
contracts/verified
'
:
'
contracts/regular
'
;
const
label
=
(
isVerified
?
'
verified
'
:
''
)
+
(
isProxy
?
'
proxy contract
'
:
'
contract
'
)
+
props
.
hintPostfix
;
const
label
=
(
isVerified
?
'
verified
'
:
''
)
+
(
isProxy
?
'
proxy contract
'
:
'
contract
'
)
+
(
props
.
hintPostfix
??
''
)
;
return
(
return
(
<
EntityBase
.
Icon
<
EntityBase
.
Icon
...
@@ -83,7 +83,7 @@ const Icon = (props: IconProps) => {
...
@@ -83,7 +83,7 @@ const Icon = (props: IconProps) => {
const
label
=
(()
=>
{
const
label
=
(()
=>
{
if
(
isDelegatedAddress
)
{
if
(
isDelegatedAddress
)
{
return
(
props
.
address
.
is_verified
?
'
EOA + verified code
'
:
'
EOA + code
'
)
+
props
.
hintPostfix
;
return
(
props
.
address
.
is_verified
?
'
EOA + verified code
'
:
'
EOA + code
'
)
+
(
props
.
hintPostfix
??
''
)
;
}
}
return
props
.
hint
;
return
props
.
hint
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment