Skip to content
Snippets Groups Projects
Unverified Commit 176d206e authored by Kyle Doherty's avatar Kyle Doherty
Browse files

all items link

parent 03fe9859
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,22 @@ class CollectionList extends React.Component {
/>
</GridItem>
)}
{!currentCollection && (
<GridItem w={1 / 4}>
<Link
to={Urls.collection()}
color={normal.grey2}
hover={{ color: normal.blue }}
>
<Box p={2} className="bordered rounded">
<Flex align="center" py={1}>
<Icon name="dashboard" mr={1} bordered />
<h4>{t`Dashboards and questions`}</h4>
</Flex>
</Box>
</Link>
</GridItem>
)}
{collections
.filter(c => c.id !== currentUser.personal_collection_id)
.map(collection => (
......
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