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 289450e commit 2f6ddb6Copy full SHA for 2f6ddb6
src/views/codeAnalytics/errorFlowStackRenderer.ts
@@ -265,7 +265,8 @@ export class ErrorFlowStackRenderer {
265
266
private static getFrameItemHtml(frame: FrameViewModel)
267
{
268
- const path = `${frame.modulePhysicalPath} in ${frame.functionName}`;
+ const functionName = frame.functionName?.trim().length > 0 ? ` in ${frame.functionName}` : '';
269
+ const path = frame.modulePhysicalPath + functionName;
270
const selectedClass = frame.selected ? "selected" : "";
271
const disabledClass = frame.workspaceUri ? "" : "disabled";
272
const hidden = Settings.hideFramesOutsideWorkspace.value && !frame.workspaceUri ? "hidden" : "";
0 commit comments