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
421e2a3e
Unverified
Commit
421e2a3e
authored
Feb 29, 2024
by
Igor Stuev
Committed by
GitHub
Feb 29, 2024
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1658 from blockscout/fe-1656
fixes for no miner
parents
e817d438
845a68be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
BlocksTable.tsx
ui/blocks/BlocksTable.tsx
+1
-1
PageTitle.tsx
ui/shared/Page/PageTitle.tsx
+1
-1
No files found.
ui/blocks/BlocksTable.tsx
View file @
421e2a3e
...
@@ -33,7 +33,7 @@ const isRollup = config.features.rollup.isEnabled;
...
@@ -33,7 +33,7 @@ const isRollup = config.features.rollup.isEnabled;
const
BlocksTable
=
({
data
,
isLoading
,
top
,
page
,
showSocketInfo
,
socketInfoNum
,
socketInfoAlert
}:
Props
)
=>
{
const
BlocksTable
=
({
data
,
isLoading
,
top
,
page
,
showSocketInfo
,
socketInfoNum
,
socketInfoAlert
}:
Props
)
=>
{
const
widthBase
=
const
widthBase
=
VALIDATOR_COL_WEIGHT
+
(
!
config
.
UI
.
views
.
block
.
hiddenFields
?.
miner
?
VALIDATOR_COL_WEIGHT
:
0
)
+
GAS_COL_WEIGHT
+
GAS_COL_WEIGHT
+
(
!
isRollup
&&
!
config
.
UI
.
views
.
block
.
hiddenFields
?.
total_reward
?
REWARD_COL_WEIGHT
:
0
)
+
(
!
isRollup
&&
!
config
.
UI
.
views
.
block
.
hiddenFields
?.
total_reward
?
REWARD_COL_WEIGHT
:
0
)
+
(
!
isRollup
&&
!
config
.
UI
.
views
.
block
.
hiddenFields
?.
burnt_fees
?
FEES_COL_WEIGHT
:
0
);
(
!
isRollup
&&
!
config
.
UI
.
views
.
block
.
hiddenFields
?.
burnt_fees
?
FEES_COL_WEIGHT
:
0
);
...
...
ui/shared/Page/PageTitle.tsx
View file @
421e2a3e
...
@@ -143,7 +143,7 @@ const PageTitle = ({ title, contentAfter, withTextAd, backLink, className, isLoa
...
@@ -143,7 +143,7 @@ const PageTitle = ({ title, contentAfter, withTextAd, backLink, className, isLoa
{
withTextAd
&&
<
TextAd
order=
{
{
base
:
-
1
,
lg
:
100
}
}
mb=
{
{
base
:
6
,
lg
:
0
}
}
ml=
"auto"
w=
{
{
base
:
'
100%
'
,
lg
:
'
auto
'
}
}
/>
}
{
withTextAd
&&
<
TextAd
order=
{
{
base
:
-
1
,
lg
:
100
}
}
mb=
{
{
base
:
6
,
lg
:
0
}
}
ml=
"auto"
w=
{
{
base
:
'
100%
'
,
lg
:
'
auto
'
}
}
/>
}
</
Flex
>
</
Flex
>
{
secondRow
&&
(
{
secondRow
&&
(
<
Flex
alignItems=
"center"
minH=
{
10
}
overflow=
"hidden"
>
<
Flex
alignItems=
"center"
minH=
{
10
}
overflow=
"hidden"
_empty=
{
{
display
:
'
none
'
}
}
>
{
secondRow
}
{
secondRow
}
</
Flex
>
</
Flex
>
)
}
)
}
...
...
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