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
35a7925d
Commit
35a7925d
authored
Aug 20, 2022
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fixes
parent
c5909088
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
PublicTagTable.tsx
ui/publicTags/PublicTagTable/PublicTagTable.tsx
+3
-3
PublicTagTableItem.tsx
ui/publicTags/PublicTagTable/PublicTagTableItem.tsx
+3
-5
PublicTagsData.tsx
ui/publicTags/PublicTagsData.tsx
+1
-1
No files found.
ui/publicTags/PublicTagTable/PublicTagTable.tsx
View file @
35a7925d
...
...
@@ -24,9 +24,9 @@ const PublicTagTable = ({ data, onEditClick, onDeleteClick }: Props) => {
<
Table
variant=
"simple"
minWidth=
"600px"
>
<
Thead
>
<
Tr
>
<
Th
width=
"
6
0%"
>
Smart contract / Address (0x...)
</
Th
>
<
Th
width=
"
40
%"
>
Public tag
</
Th
>
<
Th
width=
"2
00px
"
>
Request status
</
Th
>
<
Th
width=
"
5
0%"
>
Smart contract / Address (0x...)
</
Th
>
<
Th
width=
"
25
%"
>
Public tag
</
Th
>
<
Th
width=
"2
5%
"
>
Request status
</
Th
>
<
Th
width=
"108px"
></
Th
>
</
Tr
>
</
Thead
>
...
...
ui/publicTags/PublicTagTable/PublicTagTableItem.tsx
View file @
35a7925d
...
...
@@ -42,8 +42,8 @@ const PublicTagTableItem = ({ item, onEditClick, onDeleteClick }: Props) => {
<
AddressIcon
address=
{
address
}
/>
<
Box
overflow=
"hidden"
>
<
AddressLinkWithTooltip
address=
{
address
}
/>
{
/*
todo_tom add address name
*/
}
<
Text
fontSize=
"sm"
variant=
"secondary"
mt=
{
0.5
}
>
Address Name
</
Text
>
{
/*
will be added later
*/
}
{
/* <Text fontSize="sm" variant="secondary" mt={ 0.5 }>Address Name</Text> */
}
</
Box
>
</
HStack
>
);
...
...
@@ -63,11 +63,9 @@ const PublicTagTableItem = ({ item, onEditClick, onDeleteClick }: Props) => {
})
}
</
VStack
>
</
Td
>
{
/* todo_tom update tag date and status */
}
<
Td
>
<
VStack
alignItems=
"flex-start"
>
<
Text
fontSize=
"sm"
color=
"green.500"
fontWeight=
"500"
>
Approved
</
Text
>
<
Text
fontSize=
"sm"
variant=
"secondary"
>
Jun 10, 2022
</
Text
>
<
Text
fontSize=
"sm"
fontWeight=
"500"
>
Submitted
</
Text
>
</
VStack
>
</
Td
>
<
Td
>
...
...
ui/publicTags/PublicTagsData.tsx
View file @
35a7925d
...
...
@@ -48,7 +48,7 @@ const PublicTagsData = ({ changeToFormScreen, onTagDelete }: Props) => {
if
(
isLoading
||
isError
)
{
return
(
<>
<
SkeletonTable
columns=
{
[
'
60%
'
,
'
40%
'
,
'
200px
'
,
'
108px
'
]
}
/>
<
SkeletonTable
columns=
{
[
'
50%
'
,
'
25%
'
,
'
25%
'
,
'
108px
'
]
}
/>
<
Skeleton
height=
"48px"
width=
"270px"
marginTop=
{
8
}
/>
</>
);
...
...
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