Sidebar styling tweak

This commit is contained in:
Tom Moor
2018-06-30 19:19:37 -07:00
parent 5c7a182897
commit e50c6488d3
2 changed files with 18 additions and 2 deletions

View File

@@ -37,11 +37,11 @@ export type NavigationNode = {
id: string,
title: string,
url: string,
children: Array<NavigationNode>,
children: NavigationNode[],
};
export type Document = {
collaborators: Array<User>,
collaborators: User[],
collection: Object,
createdAt: string,
createdBy: User,