Skip to content

Commit

Permalink
Merge pull request #28809 from dukenv0307/fix/26018-regression
Browse files Browse the repository at this point in the history
Fix regression task preview
  • Loading branch information
mountiny authored Oct 4, 2023
2 parents bdcfe3b + 7b2cbc5 commit 20392e5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/pages/home/report/ReportActionItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -550,14 +550,14 @@ function ReportActionItem(props) {
<View style={styles.reportHorizontalRule} />
</>
);
} else {
content = (
<TaskView
report={props.report}
shouldShowHorizontalRule={!props.shouldHideThreadDividerLine}
/>
);
}

content = (
<TaskView
report={props.report}
shouldShowHorizontalRule={!props.shouldHideThreadDividerLine}
/>
);
}
if (ReportUtils.isExpenseReport(props.report) || ReportUtils.isIOUReport(props.report)) {
content = (
Expand Down

0 comments on commit 20392e5

Please sign in to comment.