Skip to content

Commit 3f0410a

Browse files
committed
1 parent f5f82d8 commit 3f0410a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/debug/electron-browser/debugViewer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ export class VariablesDataSource implements tree.IDataSource {
582582
}
583583

584584
let variable = <model.Variable>element;
585-
return variable.reference !== 0 && !strings.equalsIgnoreCase(variable.value, 'null');
585+
return variable.reference !== 0 && variable.value && !strings.equalsIgnoreCase(variable.value, 'null');
586586
}
587587

588588
public getChildren(tree: tree.ITree, element: any): TPromise<any> {

0 commit comments

Comments
 (0)