Improve collector metadata progress and alignment
Stream completed metadata checks into the collector while preserving generation-based stale-result protection. Derive row statuses from verified availability, move analysis feedback into the sidebar, center table values under their headers, and keep the header synchronized during horizontal scrolling.
This commit is contained in:
@@ -1001,8 +1001,11 @@ export class AppController {
|
||||
return prepareCollectorContainers(filePaths, addedAt);
|
||||
}
|
||||
|
||||
public enrichCollectorPackages(request: CollectorEnrichmentRequest): Promise<CollectorInspectionResult> {
|
||||
return enrichCollectorPackages(request, this.settings);
|
||||
public enrichCollectorPackages(
|
||||
request: CollectorEnrichmentRequest,
|
||||
onProgress?: (result: CollectorInspectionResult) => void
|
||||
): Promise<CollectorInspectionResult> {
|
||||
return enrichCollectorPackages(request, this.settings, {}, onProgress);
|
||||
}
|
||||
|
||||
public async addContainers(filePaths: string[]): Promise<{ addedPackages: number; addedLinks: number }> {
|
||||
|
||||
Reference in New Issue
Block a user