File tree 1 file changed +2
-4
lines changed 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -614,10 +614,8 @@ export default compose(
614
614
lodashGet ( prevProps . report , 'stateNum' ) === lodashGet ( nextProps . report , 'stateNum' ) &&
615
615
prevProps . translate === nextProps . translate &&
616
616
// TaskReport's created actions render the TaskView, which updates depending on certain fields in the TaskReport
617
- ReportUtils . isTaskReport ( prevProps . report ) &&
618
- prevProps . action . actionName === CONST . REPORT . ACTIONS . TYPE . CREATED &&
619
- ReportUtils . isTaskReport ( nextProps . report ) &&
620
- nextProps . action . actionName === CONST . REPORT . ACTIONS . TYPE . CREATED &&
617
+ ReportUtils . isTaskReport ( prevProps . report ) === ReportUtils . isTaskReport ( nextProps . report ) &&
618
+ prevProps . action . actionName === nextProps . action . actionName &&
621
619
prevProps . report . reportName === nextProps . report . reportName &&
622
620
prevProps . report . description === nextProps . report . description &&
623
621
ReportUtils . isCompletedTaskReport ( prevProps . report ) === ReportUtils . isCompletedTaskReport ( nextProps . report ) &&
You can’t perform that action at this time.
0 commit comments