Improve framework event filtering
Summary: Now when entering framework event table from a tree root we filter that so you can see all tree events. Also we use exact matches to avoid and nasty substring bugs Reviewed By: lblasa Differential Revision: D48560169 fbshipit-source-id: 1df375a2b8c5035003d82c210b55adebda8bd4ec
This commit is contained in:
committed by
Facebook GitHub Bot
parent
206ef79cf9
commit
7d9744b8ff
@@ -103,7 +103,13 @@ export function Component() {
|
||||
}
|
||||
|
||||
if (viewMode.mode === 'frameworkEventsTable') {
|
||||
return <FrameworkEventsTable nodeId={viewMode.nodeId} nodes={nodes} />;
|
||||
return (
|
||||
<FrameworkEventsTable
|
||||
nodeId={viewMode.nodeId}
|
||||
isTree={viewMode.isTree}
|
||||
nodes={nodes}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user