From 10ca9da0a544ef82ae7c1b2d367fa3f8a34e28f0 Mon Sep 17 00:00:00 2001 From: zaldih Date: Thu, 6 Jun 2024 12:16:09 +0200 Subject: [PATCH] fix(controller): render results immediately after finding them --- src/controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controller.ts b/src/controller.ts index 8a27976..7d39111 100644 --- a/src/controller.ts +++ b/src/controller.ts @@ -434,6 +434,7 @@ export class Controller { this.resultsService.sortResults(this.config.sortBy); this.uiResults.clear(); } + this.printFoldersSection(); }), mergeMap((nodeFolder) => { return this.calculateFolderStats(nodeFolder);