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:
committed by
Facebook GitHub Bot
parent
043fcc354f
commit
1bfb750467
@@ -85,6 +85,9 @@ function rowMatchesSearchTerm(
|
||||
rowValues.push(row.responseBody);
|
||||
}
|
||||
}
|
||||
if (row.filterValue != null) {
|
||||
rowValues.push(row.filterValue);
|
||||
}
|
||||
if (isRegex) {
|
||||
return rowMatchesRegex(rowValues, searchTerm);
|
||||
}
|
||||
|
||||
@@ -70,6 +70,9 @@ function rowMatchesSearchTerm(
|
||||
const rowValues = Object.keys(row.columns).map(key =>
|
||||
textContent(row.columns[key].value),
|
||||
);
|
||||
if (row.filterValue != null) {
|
||||
rowValues.push(row.filterValue);
|
||||
}
|
||||
if (isRegex) {
|
||||
return rowMatchesRegex(rowValues, searchTerm);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user