bad merge and rebase

This commit is contained in:
Jori Lallo 2017-06-27 00:19:15 -07:00
parent e73eec4486
commit f8a715dcef
3 changed files with 2 additions and 10 deletions

View File

@ -18,7 +18,7 @@ class CollectionStore {
invariant(res && res.data, 'Data should be available');
const { data } = res;
if (data.type === 'atlas') this.redirectUrl = data.recentDocuments[0].url;
if (data.type === 'atlas') this.redirectUrl = data.documents[0].url;
else throw new Error('TODO code up non-atlas collections');
} catch (e) {
console.log(e);

View File

@ -137,14 +137,6 @@ type Props = {
</CenteredContent>
: this.store.document &&
<DocumentContainer>
{!isEditing &&
<PublishingInfo
collaborators={this.store.document.collaborators}
createdAt={this.store.document.createdAt}
createdBy={this.store.document.createdBy}
updatedAt={this.store.document.updatedAt}
updatedBy={this.store.document.updatedBy}
/>}
<Editor
key={this.store.document.id}
text={this.store.document.text}

View File

@ -16,7 +16,7 @@ async function present(ctx, collection, includeRecentDocuments = false) {
};
if (collection.type === 'atlas')
data.navigationTree = collection.navigationTree;
data.documents = await collection.getDocumentsStructure();
if (includeRecentDocuments) {
const documents = await Document.findAll({