File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
extensions/ql-vscode/src/data-extensions-editor Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,10 @@ export class DataExtensionsEditorView extends AbstractWebview<
8383 protected async onWebViewLoaded ( ) {
8484 super . onWebViewLoaded ( ) ;
8585
86- await Promise . all ( [ this . loadExternalApiUsages ( ) , this . readExistingYaml ( ) ] ) ;
86+ await Promise . all ( [
87+ this . loadExternalApiUsages ( ) ,
88+ this . loadExistingModeledMethods ( ) ,
89+ ] ) ;
8790 }
8891
8992 protected async saveYaml ( yaml : string ) : Promise < void > {
@@ -97,7 +100,7 @@ export class DataExtensionsEditorView extends AbstractWebview<
97100 void extLogger . log ( `Saved data extension YAML to ${ modelFilename } ` ) ;
98101 }
99102
100- protected async readExistingYaml ( ) : Promise < void > {
103+ protected async loadExistingModeledMethods ( ) : Promise < void > {
101104 const modelFilename = this . modelFileName ;
102105 if ( ! modelFilename ) {
103106 return ;
You can’t perform that action at this time.
0 commit comments