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
0425a416
Commit
0425a416
authored
Mar 22, 2023
by
isstuev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
75a90ae5
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
6 additions
and
11 deletions
+6
-11
OutputRootsListItem.tsx
ui/outputRoots/OutputRootsListItem.tsx
+1
-1
OutputRootsTableItem.tsx
ui/outputRoots/OutputRootsTableItem.tsx
+1
-1
Withdrawals.tsx
ui/pages/Withdrawals.tsx
+1
-6
OutputRoots.pw.tsx_default_base-view-mobile-1.png
...shots__/OutputRoots.pw.tsx_default_base-view-mobile-1.png
+0
-0
TxnBatches.pw.tsx_default_base-view-mobile-1.png
...nshots__/TxnBatches.pw.tsx_default_base-view-mobile-1.png
+0
-0
TxnBatches.pw.tsx_mobile_base-view-mobile-1.png
...enshots__/TxnBatches.pw.tsx_mobile_base-view-mobile-1.png
+0
-0
TxnBatchesListItem.tsx
ui/txnBatches/TxnBatchesListItem.tsx
+1
-1
TxnBatchesTableItem.tsx
ui/txnBatches/TxnBatchesTableItem.tsx
+1
-1
WithdrawalsListItem.tsx
ui/withdrawals/WithdrawalsListItem.tsx
+1
-1
No files found.
ui/outputRoots/OutputRootsListItem.tsx
View file @
0425a416
...
...
@@ -44,7 +44,7 @@ const OutputRootsListItem = ({ item }: Props) => {
name
:
'
L1 txn hash
'
,
value
:
(
<
LinkExternal
w
=
"100%"
maxW
=
"100%"
display=
"inline-flex"
overflow=
"hidden"
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l1_tx_hash
}
})
}
...
...
ui/outputRoots/OutputRootsTableItem.tsx
View file @
0425a416
...
...
@@ -41,7 +41,7 @@ const OutputRootsTableItem = ({ item }: Props) => {
<
Td
verticalAlign=
"middle"
pr=
{
12
}
>
<
Flex
>
<
LinkExternal
w
=
"100%"
maxW
=
"100%"
display=
"inline-flex"
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l1_tx_hash
}
})
}
>
...
...
ui/pages/Withdrawals.tsx
View file @
0425a416
...
...
@@ -16,15 +16,10 @@ import WithdrawalsTable from 'ui/withdrawals/WithdrawalsTable';
const
Withdrawals
=
()
=>
{
const
isMobile
=
useIsMobile
();
// const { data, isError, isLoading, isPaginationVisible, pagination } = useQueryWithPages({
// resourceName: 'withdrawals',
// });
const
{
data
,
isError
,
isLoading
,
pagination
}
=
useQueryWithPages
({
const
{
data
,
isError
,
isLoading
,
isPaginationVisible
,
pagination
}
=
useQueryWithPages
({
resourceName
:
'
withdrawals
'
,
});
const
isPaginationVisible
=
false
;
const
countersQuery
=
useApiQuery
(
'
withdrawals_count
'
);
const
content
=
data
?.
items
?
(
...
...
ui/pages/__screenshots__/OutputRoots.pw.tsx_default_base-view-mobile-1.png
View replaced file @
75a90ae5
View file @
0425a416
47.6 KB
|
W:
|
H:
47.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
ui/pages/__screenshots__/TxnBatches.pw.tsx_default_base-view-mobile-1.png
View replaced file @
75a90ae5
View file @
0425a416
48.5 KB
|
W:
|
H:
48.5 KB
|
W:
|
H:
2-up
Swipe
Onion skin
ui/pages/__screenshots__/TxnBatches.pw.tsx_mobile_base-view-mobile-1.png
View replaced file @
75a90ae5
View file @
0425a416
65.7 KB
|
W:
|
H:
65.7 KB
|
W:
|
H:
2-up
Swipe
Onion skin
ui/txnBatches/TxnBatchesListItem.tsx
View file @
0425a416
...
...
@@ -60,7 +60,7 @@ const TxnBatchesListItem = ({ item }: Props) => {
<
VStack
spacing=
{
3
}
w=
"100%"
overflow=
"hidden"
>
{
item
.
l1_tx_hashes
.
map
(
hash
=>
(
<
LinkExternal
w
=
"100%"
maxW
=
"100%"
display=
"inline-flex"
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
hash
}
})
}
key=
{
hash
}
...
...
ui/txnBatches/TxnBatchesTableItem.tsx
View file @
0425a416
...
...
@@ -53,7 +53,7 @@ const TxnBatchesTableItem = ({ item }: Props) => {
<
VStack
spacing=
{
3
}
>
{
item
.
l1_tx_hashes
.
map
(
hash
=>
(
<
LinkExternal
w
=
"100%"
maxW
=
"100%"
display=
"inline-flex"
key=
{
hash
}
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
hash
}
})
}
...
...
ui/withdrawals/WithdrawalsListItem.tsx
View file @
0425a416
...
...
@@ -66,7 +66,7 @@ const WithdrawalsListItem = ({ item }: Props) => {
value
:
item
.
l1_tx_hash
?
(
<
LinkExternal
href=
{
appConfig
.
L2
.
L1BaseUrl
+
route
({
pathname
:
'
/tx/[hash]
'
,
query
:
{
hash
:
item
.
l1_tx_hash
}
})
}
w
=
"100%"
maxW
=
"100%"
display=
"inline-flex"
overflow=
"hidden"
>
...
...
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