We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 952faf5 commit decbd52Copy full SHA for decbd52
1 file changed
extensions/ql-vscode/src/databases/ui/db-panel.ts
@@ -63,7 +63,7 @@ export class DbPanel extends DisposableObject {
63
);
64
this.push(
65
commandRunner("codeQLDatabasesExperimental.addNewList", () =>
66
- this.addNewRemoteList(),
+ this.addNewList(),
67
),
68
69
@@ -151,7 +151,7 @@ export class DbPanel extends DisposableObject {
151
await this.dbManager.addNewRemoteOwner(owner);
152
}
153
154
- private async addNewRemoteList(): Promise<void> {
+ private async addNewList(): Promise<void> {
155
const listName = await window.showInputBox({
156
prompt: "Enter a name for the new list",
157
placeHolder: "example-list",
0 commit comments