Skip to content

Commit

Permalink
fixing bug for task order without a owner
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanmtz committed Jan 4, 2019
1 parent 0b949ad commit cfc7c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/task/task.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ class Task extends Component {
</FormattedMessage>
)
: (
`${user && user.username || user.name || this.props.intl.formatMessage(messages.noUserFound)}`
`${user && (user.username || user.name || this.props.intl.formatMessage(messages.noUserFound))}`
)
}
</span>)
Expand Down

0 comments on commit cfc7c39

Please sign in to comment.