mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-26 10:16:01 +01:00
Only show context menu on "real" variables. Not on array chunk nodes.
fixes #25147
This commit is contained in:
@@ -589,7 +589,8 @@ export class VariablesActionProvider implements IActionProvider {
|
||||
}
|
||||
|
||||
public hasSecondaryActions(tree: ITree, element: any): boolean {
|
||||
return element instanceof Variable;
|
||||
// Only show context menu on "real" variables. Not on array chunk nodes.
|
||||
return element instanceof Variable && !!element.value;
|
||||
}
|
||||
|
||||
public getSecondaryActions(tree: ITree, element: any): TPromise<IAction[]> {
|
||||
|
||||
Reference in New Issue
Block a user