We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758c182 commit 28abd40Copy full SHA for 28abd40
1 file changed
extensions/ql-vscode/src/databases/ui/db-panel.ts
@@ -86,6 +86,11 @@ export class DbPanel extends DisposableObject {
86
87
if (highlightedItem?.kind === DbItemKind.RemoteUserDefinedList) {
88
await this.addNewRemoteRepo(highlightedItem.listName);
89
+ } else if (
90
+ highlightedItem?.kind === DbItemKind.RemoteRepo &&
91
+ highlightedItem.parentListName
92
+ ) {
93
+ await this.addNewRemoteRepo(highlightedItem.parentListName);
94
} else {
95
const quickPickItems = [
96
{
0 commit comments