Skip to content

Commit f79b2f3

Browse files
authored
Merge pull request Expensify#76474 from ryntgh/issue-75838
Fix: Search input does not return results for valid keywords on Debug Actions
2 parents 3767fe2 + ad23da8 commit f79b2f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/Debug/Report/DebugReportActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function DebugReportActions({reportID}: DebugReportActionsProps) {
9494
return (sortedAllReportActions ?? [])
9595
.filter(
9696
(reportAction) =>
97-
reportAction.reportActionID.includes(debouncedSearchValue) || getReportActionMessageText(reportAction).toLowerCase().includes(debouncedSearchValue.toLowerCase()),
97+
reportAction.reportActionID.includes(debouncedSearchValue) || getReportActionDebugText(reportAction).toLowerCase().includes(debouncedSearchValue.toLowerCase()),
9898
)
9999
.map((reportAction) => ({
100100
reportActionID: reportAction.reportActionID,

0 commit comments

Comments
 (0)