Skip to content

Commit 2223fc8

Browse files
author
Tyler Deemer
committed
Add studio action menus where appropriate
1 parent 0867307 commit 2223fc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
},
191191
{
192192
"command": "vscode-objectscript.studio.actions",
193-
"when": "resourceScheme == isfs && editorLangId =~ /^objectscript/ && vscode-objectscript.connectActive"
193+
"when": "resourceScheme == isfs && vscode-objectscript.connectActive"
194194
},
195195
{
196196
"command": "vscode-objectscript.previewXml",

src/explorer/models/rootNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class RootNode extends NodeBase {
121121
case "100":
122122
return new ClassNode(el.Name, el.fullName, this.options);
123123
case "10":
124-
return new RootNode(el.Name, el.fullName, this.contextValue, this._category, this.options, true);
124+
return new RootNode(el.Name, el.fullName, "dataNode:CSPApplication", this._category, this.options, true);
125125
case "5":
126126
return new ClassNode(el.Name, el.fullName, this.options);
127127
default:

0 commit comments

Comments
 (0)