Skip to content

Commit

Permalink
Merge pull request #22406 from situchan/fix/22398-task-no-assignee
Browse files Browse the repository at this point in the history
fix "0" display issue after creating task without assignee
  • Loading branch information
MariaHCD authored Jul 7, 2023
2 parents 15e4200 + 4a6cd71 commit 733bcb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TaskHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function TaskHeader(props) {
>
<View style={[styles.flexRow, styles.alignItemsCenter, styles.justifyContentBetween, styles.pv3]}>
<View style={[styles.flexRow, styles.alignItemsCenter, styles.justifyContentBetween]}>
{assigneeAccountID && assigneeAccountID > 0 && (
{assigneeAccountID > 0 && (
<>
<Avatar
source={assigneeAvatar}
Expand Down

0 comments on commit 733bcb0

Please sign in to comment.