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
fb1e3b18
Commit
fb1e3b18
authored
Dec 28, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i am stupid
parent
2280059b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
AddressEnsDomains.tsx
ui/address/ensDomains/AddressEnsDomains.tsx
+1
-1
NameDomainDetails.tsx
ui/nameDomain/NameDomainDetails.tsx
+2
-2
NameDomain.tsx
ui/pages/NameDomain.tsx
+1
-1
No files found.
ui/address/ensDomains/AddressEnsDomains.tsx
View file @
fb1e3b18
...
@@ -116,7 +116,7 @@ const AddressEnsDomains = ({ addressHash, mainDomainName }: Props) => {
...
@@ -116,7 +116,7 @@ const AddressEnsDomains = ({ addressHash, mainDomainName }: Props) => {
)
}
)
}
{
(
ownedDomains
.
length
>
9
||
resolvedDomains
.
length
>
9
)
&&
(
{
(
ownedDomains
.
length
>
9
||
resolvedDomains
.
length
>
9
)
&&
(
<
LinkInternal
<
LinkInternal
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
q
:
addressHash
}
})
}
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
address
:
addressHash
}
})
}
>
>
<
span
>
More results
</
span
>
<
span
>
More results
</
span
>
<
chakra
.
span
color=
"text_secondary"
>
(
{
totalRecords
}
)
</
chakra
.
span
>
<
chakra
.
span
color=
"text_secondary"
>
(
{
totalRecords
}
)
</
chakra
.
span
>
...
...
ui/nameDomain/NameDomainDetails.tsx
View file @
fb1e3b18
...
@@ -72,7 +72,7 @@ const NameDomainDetails = ({ query }: Props) => {
...
@@ -72,7 +72,7 @@ const NameDomainDetails = ({ query }: Props) => {
<
LinkInternal
<
LinkInternal
flexShrink=
{
0
}
flexShrink=
{
0
}
display=
"inline-flex"
display=
"inline-flex"
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
q
:
query
.
data
.
registrant
.
hash
}
})
}
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
address
:
query
.
data
.
registrant
.
hash
}
})
}
>
>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
</
LinkInternal
>
</
LinkInternal
>
...
@@ -95,7 +95,7 @@ const NameDomainDetails = ({ query }: Props) => {
...
@@ -95,7 +95,7 @@ const NameDomainDetails = ({ query }: Props) => {
<
LinkInternal
<
LinkInternal
flexShrink=
{
0
}
flexShrink=
{
0
}
display=
"inline-flex"
display=
"inline-flex"
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
q
:
query
.
data
.
owner
.
hash
}
})
}
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
address
:
query
.
data
.
owner
.
hash
}
})
}
>
>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
</
LinkInternal
>
</
LinkInternal
>
...
...
ui/pages/NameDomain.tsx
View file @
fb1e3b18
...
@@ -70,7 +70,7 @@ const NameDomain = () => {
...
@@ -70,7 +70,7 @@ const NameDomain = () => {
<
LinkInternal
<
LinkInternal
flexShrink=
{
0
}
flexShrink=
{
0
}
display=
"inline-flex"
display=
"inline-flex"
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
q
:
infoQuery
.
data
?.
resolved_address
?.
hash
}
})
}
href=
{
route
({
pathname
:
'
/name-domains
'
,
query
:
{
owned_by
:
'
true
'
,
resolved_to
:
'
true
'
,
address
:
infoQuery
.
data
?.
resolved_address
?.
hash
}
})
}
>
>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
<
IconSvg
name=
"search"
boxSize=
{
5
}
isLoading=
{
isLoading
}
/>
</
LinkInternal
>
</
LinkInternal
>
...
...
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