You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This changes the skeleton query wizard to not prompt for database
download after creating a query by default. Instead, it will show a
message with a button to download a database which will launch the same
prompt.
`New CodeQL query for ${this.language}${openFileLink} created, but no CodeQL databases for ${this.language} were detected in your workspace. Would you like to download a CodeQL database for ${this.language} to analyze with ${openFileLink}?`,
`New CodeQL query for ${this.language}${openFileLink} created. We have automatically selected your existing CodeQL ${this.language} database ${existingDatabaseItem.name} for you to analyze with ${openFileLink}.`,
312
+
);
313
+
}
285
314
}else{
286
315
// download new database and select it
287
-
awaitthis.downloadDatabase();
316
+
voidthis.promptDownloadDatabase();
317
+
}
318
+
}
319
+
320
+
privategetopenFileMarkdownLink(){
321
+
if(this.qlPackStoragePath===undefined){
322
+
thrownewError("QL Pack storage path is undefined");
0 commit comments