Fixed: Modified time display on dashboard

New Time component for relative time formatting with accessibility
This commit is contained in:
Tom Moor
2018-07-01 19:56:58 -07:00
parent 933fa9732c
commit 2fd8b35ca9
5 changed files with 56 additions and 49 deletions

View File

@@ -28,7 +28,7 @@ const Breadcrumb = observer(({ document, collections }: Props) => {
<span>{collection.name}</span>
</CollectionName>
{path.map(n => (
<React.Fragment>
<React.Fragment key={n.id}>
<Slash /> <Crumb to={n.url}>{n.title}</Crumb>
</React.Fragment>
))}