Skip to content

Commit

Permalink
Fix display of multiline card content
Browse files Browse the repository at this point in the history
  • Loading branch information
yduman committed Jun 24, 2020
1 parent ef2c039 commit 257c5c2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions frontend/src/components/board/items/RetroItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
CardAuthor,
CardContainer,
CardWrapper,
CardText,
} from "../../styled-components";
import {
FOCUS_CARD,
Expand Down Expand Up @@ -155,8 +156,13 @@ function RetroItem(props: RetroItemProps) {
/>
<Divider />
<CardContent>
<Typography variant="body2" color="textSecondary" component={"p"}>
{content}
<Typography
className={classes.contentBody}
variant="body2"
color="textSecondary"
component={"p"}
>
<CardText>{content}</CardText>
</Typography>
</CardContent>
<CardActions disableSpacing className={classes.actions}>
Expand Down

0 comments on commit 257c5c2

Please sign in to comment.