Skip to content
Snippets Groups Projects
Unverified Commit 7e17cd46 authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

add description info item if a collection has a description (#8225)

parent 5d70bf9b
No related branches found
No related tags found
No related merge requests found
......@@ -223,7 +223,20 @@ class DefaultLanding extends React.Component {
]}
/>
</Box>
<h1 style={{ fontWeight: 900 }}>{collection.name}</h1>
<Flex align="center">
<h1 style={{ fontWeight: 900 }}>{collection.name}</h1>
{collection.description && (
<Tooltip tooltip={collection.description}>
<Icon
name="info"
ml={1}
mt="4px"
color={colors["bg-dark"]}
hover={{ color: colors["brand"] }}
/>
</Tooltip>
)}
</Flex>
</Box>
<Flex ml="auto">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment