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.
Studio Actions
1 parent 756f27e commit 3c3cea9Copy full SHA for 3c3cea9
src/commands/studio.ts
@@ -75,7 +75,8 @@ class StudioActions {
75
this.api = new AtelierAPI(uri);
76
} else if (uriOrNode) {
77
const node: NodeBase = uriOrNode;
78
- this.api = new AtelierAPI();
+ this.api = new AtelierAPI(node.workspaceFolder);
79
+ this.api.setNamespace(node.namespace);
80
this.name = node instanceof PackageNode ? node.fullName + ".PKG" : node.fullName;
81
} else {
82
this.api = new AtelierAPI();
0 commit comments