dive into link

Summary:
Breaking down 'big' links and diving deeper into stack trace
each link is built from multiple events with same function on top of call stack
Now we can break that group and/or navigate one level  deeper in that stack

coloring links: according to the latest event timestamp: blue -> orange gradient

{F232164201}

Reviewed By: SimoneCasagranda

Differential Revision: D20596812

fbshipit-source-id: 9debbc55a716166e20c94f51989742bf40b95878
This commit is contained in:
Timur Valiev
2020-03-23 10:29:09 -07:00
committed by Facebook GitHub Bot
parent 043fcc354f
commit 1bfb750467
2 changed files with 6 additions and 0 deletions

View File

@@ -85,6 +85,9 @@ function rowMatchesSearchTerm(
rowValues.push(row.responseBody); rowValues.push(row.responseBody);
} }
} }
if (row.filterValue != null) {
rowValues.push(row.filterValue);
}
if (isRegex) { if (isRegex) {
return rowMatchesRegex(rowValues, searchTerm); return rowMatchesRegex(rowValues, searchTerm);
} }

View File

@@ -70,6 +70,9 @@ function rowMatchesSearchTerm(
const rowValues = Object.keys(row.columns).map(key => const rowValues = Object.keys(row.columns).map(key =>
textContent(row.columns[key].value), textContent(row.columns[key].value),
); );
if (row.filterValue != null) {
rowValues.push(row.filterValue);
}
if (isRegex) { if (isRegex) {
return rowMatchesRegex(rowValues, searchTerm); return rowMatchesRegex(rowValues, searchTerm);
} }