We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf7b5b commit 601ddc9Copy full SHA for 601ddc9
packages/next/src/client/components/react-dev-overlay/ui/components/call-stack-frame/call-stack-frame.tsx
@@ -40,6 +40,7 @@ export const CallStackFrame: React.FC<{
40
<div
41
data-nextjs-call-stack-frame
42
data-nextjs-call-stack-frame-no-source={!hasSource}
43
+ data-nextjs-call-stack-frame-ignored={frame.ignored}
44
style={
45
{
46
'--index': index,
@@ -85,6 +86,10 @@ export const CALL_STACK_FRAME_STYLES = `
85
86
margin-bottom: 0;
87
}
88
89
+ [data-nextjs-call-stack-frame-ignored="true"] {
90
+ opacity: 0.6;
91
+ }
92
+
93
[data-nextjs-call-stack-frame] {
94
user-select: text;
95
display: block;
0 commit comments