Added documents.list endpoint to documentation (fixed some bad formatting)

Updated collection parameter
Increased fetch to 10 records, 5 looks dumb on larger screens
This commit is contained in:
Tom Moor
2017-11-22 18:40:37 -08:00
parent bca940bedc
commit 94c2cc09ee
3 changed files with 37 additions and 27 deletions

View File

@@ -58,8 +58,8 @@ class CollectionScene extends Component {
this.props.ui.setActiveCollection(collection);
this.collection = collection;
await this.props.documents.fetchRecentlyModified({
limit: 5,
collectionId: collection.id,
limit: 10,
collection: collection.id,
});
}