Commit 35a7925d authored by tom's avatar tom

small fixes

parent c5909088
......@@ -24,9 +24,9 @@ const PublicTagTable = ({ data, onEditClick, onDeleteClick }: Props) => {
<Table variant="simple" minWidth="600px">
<Thead>
<Tr>
<Th width="60%">Smart contract / Address (0x...)</Th>
<Th width="40%">Public tag</Th>
<Th width="200px">Request status</Th>
<Th width="50%">Smart contract / Address (0x...)</Th>
<Th width="25%">Public tag</Th>
<Th width="25%">Request status</Th>
<Th width="108px"></Th>
</Tr>
</Thead>
......
......@@ -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>
......
......@@ -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 }/>
</>
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment