Merge branch 'master' into inputs

This commit is contained in:
Tom Moor
2017-06-27 21:53:11 -07:00
16 changed files with 237 additions and 136 deletions

View File

@ -59,7 +59,7 @@ type Props = {
};
render() {
const { user, auth, ui, collections } = this.props;
const { user, auth, ui } = this.props;
return (
<Container column auto>
@ -112,7 +112,8 @@ type Props = {
<LinkSection>
{ui.activeCollection
? <SidebarCollection
collection={collections.getById(ui.activeCollection)}
document={ui.activeDocument}
collection={ui.activeCollection}
/>
: <SidebarCollectionList />}
</LinkSection>