We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3767fe2 + ad23da8 commit f79b2f3Copy full SHA for f79b2f3
1 file changed
src/pages/Debug/Report/DebugReportActions.tsx
@@ -94,7 +94,7 @@ function DebugReportActions({reportID}: DebugReportActionsProps) {
94
return (sortedAllReportActions ?? [])
95
.filter(
96
(reportAction) =>
97
- reportAction.reportActionID.includes(debouncedSearchValue) || getReportActionMessageText(reportAction).toLowerCase().includes(debouncedSearchValue.toLowerCase()),
+ reportAction.reportActionID.includes(debouncedSearchValue) || getReportActionDebugText(reportAction).toLowerCase().includes(debouncedSearchValue.toLowerCase()),
98
)
99
.map((reportAction) => ({
100
reportActionID: reportAction.reportActionID,
0 commit comments