Skip to content

Commit

Permalink
Merge pull request #280 from appfolio/correctNoteHeader
Browse files Browse the repository at this point in the history
gt - Correct Note short date format
  • Loading branch information
gthomas-appfolio authored Aug 10, 2017
2 parents 813fd5a + 3541d71 commit f07aa85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Note.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Note extends React.Component {
{edited ? 'Last edited' : 'Posted'} {from ? <span ref="from">by {from}</span> : ' '} on <span ref="date">{dateFormat(date, 'ddd, MMMM D, YYYY "at" h:mm A')}</span>
</span>
<span className="hidden-sm-up">
{from ? <span>{from} </span> : null}<span ref="shortDate">{dateFormat(date, 'M/d/YY h:mm A')}</span>
{from ? <span>{from} </span> : null}<span ref="shortDate">{dateFormat(date, 'M/D/YY h:mm A')}</span>
</span>
</span>
<span className="ml-auto">
Expand Down

0 comments on commit f07aa85

Please sign in to comment.