Skip to content

Commit

Permalink
Merge pull request #27656 from tienifr/fix/27032
Browse files Browse the repository at this point in the history
Fix: Flag comment page does not show `Not found` when delete thread's first comment
  • Loading branch information
srikarparsi committed Sep 21, 2023
2 parents cfc4239 + f1df0f4 commit 1f5abab
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/pages/FlagCommentPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, {useCallback} from 'react';
import _ from 'underscore';
import {View, ScrollView} from 'react-native';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
import reportPropTypes from './reportPropTypes';
import reportActionPropTypes from './home/report/reportActionPropTypes';
import withLocalize, {withLocalizePropTypes} from '../components/withLocalize';
Expand All @@ -20,6 +21,7 @@ import * as ReportActionsUtils from '../libs/ReportActionsUtils';
import * as Session from '../libs/actions/Session';
import FullPageNotFoundView from '../components/BlockingViews/FullPageNotFoundView';
import withReportAndReportActionOrNotFound from './home/report/withReportAndReportActionOrNotFound';
import ONYXKEYS from '../ONYXKEYS';

const propTypes = {
/** Array of report actions for this report */
Expand Down Expand Up @@ -178,4 +180,13 @@ FlagCommentPage.propTypes = propTypes;
FlagCommentPage.defaultProps = defaultProps;
FlagCommentPage.displayName = 'FlagCommentPage';

export default compose(withLocalize, withReportAndReportActionOrNotFound)(FlagCommentPage);
export default compose(
withLocalize,
withReportAndReportActionOrNotFound,
withOnyx({
parentReportActions: {
key: ({report}) => `${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${report.parentReportID || report.reportID}`,
canEvict: false,
},
}),
)(FlagCommentPage);

0 comments on commit 1f5abab

Please sign in to comment.