We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37f5350 commit 41e20b9Copy full SHA for 41e20b9
packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.js
@@ -60,6 +60,12 @@ export function CallSiteView({
60
symbolicatedCallSite !== null ? symbolicatedCallSite.location : callSite;
61
const ignored =
62
symbolicatedCallSite !== null ? symbolicatedCallSite.ignored : false;
63
+ if (ignored) {
64
+ // TODO: Make an option to be able to toggle the display of ignore listed rows.
65
+ // Ideally this UI should be higher than a single Stack Trace so that there's not
66
+ // multiple buttons in a single inspection taking up space.
67
+ return null;
68
+ }
69
return (
70
<div className={ignored ? styles.IgnoredCallSite : styles.CallSite}>
71
{functionName || virtualFunctionName}
0 commit comments