Merge pull request #27367 from swnia/repopicker-gitlab-autocomplete

Add autocomplete to GitlabRepoUrlPicker
This commit is contained in:
Ben Lambert
2024-11-26 11:59:47 +01:00
committed by GitHub
23 changed files with 578 additions and 130 deletions
+2 -1
View File
@@ -214,7 +214,8 @@ export interface ScaffolderApi {
context?: Record<string, string>;
}): Promise<{
results: {
title: string;
title?: string;
id: string;
}[];
}>;
cancelTask(taskId: string): Promise<void>;
+1 -1
View File
@@ -245,5 +245,5 @@ export interface ScaffolderApi {
provider: string;
resource: string;
context?: Record<string, string>;
}): Promise<{ results: { title: string }[] }>;
}): Promise<{ results: { title?: string; id: string }[] }>;
}