File tree 2 files changed +2
-5
lines changed
packages/next/src/client/components/react-dev-overlay/ui/components/call-stack-frame
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,7 @@ export const CallStackFrame: React.FC<{
46
46
} as React . CSSProperties
47
47
}
48
48
>
49
- < div
50
- data-nextjs-frame-expanded = { ! frame . ignored }
51
- className = "call-stack-frame-method-name"
52
- >
49
+ < div className = "call-stack-frame-method-name" >
53
50
< HotlinkedText text = { formattedMethod } />
54
51
{ hasSource && (
55
52
< button onClick = { open } className = "open-in-editor-button" >
Original file line number Diff line number Diff line change @@ -1676,7 +1676,7 @@ export async function getStackFramesContent(browser) {
1676
1676
const stackFramesContent = (
1677
1677
await Promise . all (
1678
1678
stackFrameElements . map ( async ( frame ) => {
1679
- const functionNameEl = await frame . $ ( '[data-nextjs -frame-expanded] ' )
1679
+ const functionNameEl = await frame . $ ( '.call-stack -frame-method-name ' )
1680
1680
const sourceEl = await frame . $ ( '[data-has-source="true"]' )
1681
1681
const functionName = functionNameEl
1682
1682
? await functionNameEl . innerText ( )
You can’t perform that action at this time.
0 commit comments