Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Eisenberg <[email protected]>
  • Loading branch information
reitowo and aeisenberg authored Nov 13, 2024
1 parent ce0b25f commit 8f81119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/ql-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@
},
{
"command": "codeQL.chooseDatabaseFoldersParent",
"title": "CodeQL: Choose Folder to import all databases contained in it"
"title": "CodeQL: Choose Parent Folder and import all databases directly contained in it"
},
{
"command": "codeQL.chooseDatabaseArchive",
Expand Down
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/databases/local-databases-ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ export class DatabaseUI extends DisposableObject {
void showAndLogErrorMessage(
this.app.logger,
`Failed to import ${failures.length} database(s), successfully imported ${databases.length} database(s).`,
{ fullMessage: `Failed folders to import:\n${failures.join("\n")}` },
{ fullMessage: `Failed to import ${failures.length} database(s), successfully imported ${databases.length} database(s). Failed folders to import:\n ${failures.join("\n ")}` },
);
} else if (databases.length === 0) {
void showAndLogErrorMessage(
Expand Down

0 comments on commit 8f81119

Please sign in to comment.