Skip to content

Commit

Permalink
Simplify display of assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Oct 12, 2020
1 parent 218ff09 commit 1520fcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ItemBodyView/ItemBodyView.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ export default function ItemBodyView({ item }) {
);
case "assignment":
return (
<Typography variant="subtitle2">
{`${section.by} assigned this to ${section.to} at ${Date(section.datetime)}`}
</Typography>
<>
<Typography>{`${section.by} assigned to ${section.to}`}</Typography>
</>
);
case "reply_to_user":
return (
Expand Down

0 comments on commit 1520fcc

Please sign in to comment.