Skip to content

Commit 00b3ea4

Browse files
committed
Misc renames.
1 parent 46f80ef commit 00b3ea4

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

extensions/ql-vscode/src/model-editor/model-editor-module.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ export class ModelEditorModule extends DisposableObject {
3838
baseQueryStorageDir: string,
3939
) {
4040
super();
41-
this.queryStorageDir = join(
42-
baseQueryStorageDir,
43-
"data-extensions-editor-results",
44-
);
41+
this.queryStorageDir = join(baseQueryStorageDir, "model-editor-results");
4542
this.methodsUsagePanel = this.push(new MethodsUsagePanel(cliServer));
4643
this.push(new MethodModelingPanel(ctx));
4744
}

extensions/ql-vscode/src/model-editor/model-editor-view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class ModelEditorView extends AbstractWebview<
136136
const viewType: string | undefined = (tab.input as any)?.viewType;
137137
// The viewType has a prefix, such as "mainThreadWebview-", but if the
138138
// suffix matches that should be enough to identify the view.
139-
return viewType && viewType.endsWith("data-extensions-editor");
139+
return viewType && viewType.endsWith("model-editor");
140140
}),
141141
);
142142
}

0 commit comments

Comments
 (0)