Skip to content

Commit

Permalink
CohortCard: fix "Created..." text
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jul 27, 2020
1 parent fbc9b57 commit 3cb996d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/Cohorts/CohortCard.jsx
Expand Up @@ -47,7 +47,7 @@ export const CohortCard = ({ id, created_at, name, roles, users }) => {
<Card.Header>
<NavLink to={`/cohort/${id}`}>{name}</NavLink>
</Card.Header>
<Card.Meta title={`Created on ${calendar}`}>
<Card.Meta title={`Created ${calendar}`}>
Created {createdBy} {fromNow}
</Card.Meta>
<Card.Description>{''}</Card.Description>
Expand Down

0 comments on commit 3cb996d

Please sign in to comment.