From 908d001023598e282502b30f4a09731f735d205c Mon Sep 17 00:00:00 2001 From: CollinBeczak Date: Mon, 15 Jan 2024 22:58:50 -0600 Subject: [PATCH] fix request meta-review username issue --- src/components/TaskHistoryList/TaskHistoryList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TaskHistoryList/TaskHistoryList.js b/src/components/TaskHistoryList/TaskHistoryList.js index 91926ddd4..555057b65 100644 --- a/src/components/TaskHistoryList/TaskHistoryList.js +++ b/src/components/TaskHistoryList/TaskHistoryList.js @@ -96,7 +96,7 @@ export class TaskHistoryList extends Component { case TaskHistoryAction.review: case TaskHistoryAction.metaReview: if (log.reviewStatus === TaskReviewStatus.needed) { - username = _get(log, 'reviewRequestedBy.username') + username = _get(log, 'metaReviewRequestedBy.username') logEntry = reviewEntry(log, this.props, index) } else { logEntry = null