Link sidebar directly to entry document

This commit is contained in:
Jori Lallo
2017-06-30 00:00:05 -07:00
parent 37ed973322
commit 4df0a69ee6
2 changed files with 8 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ const SidebarCollectionList = observer(({ collections }: Props) => {
<Flex column>
<Header>Collections</Header>
{collections.data.map(collection => (
<SidebarLink key={collection.id} to={collection.url}>
<SidebarLink key={collection.id} to={collection.entryUrl}>
{collection.name}
</SidebarLink>
))}