From 218781e038388c273651e14dc7a263846e83bf7d Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 1 Feb 2026 19:23:27 +0000 Subject: [PATCH] Add visual progress bar to task indicator --- .../frontend/src/components/TaskIndicator.tsx | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/crawler/frontend/src/components/TaskIndicator.tsx b/crawler/frontend/src/components/TaskIndicator.tsx index 4ca1fa0..c9ebf2d 100644 --- a/crawler/frontend/src/components/TaskIndicator.tsx +++ b/crawler/frontend/src/components/TaskIndicator.tsx @@ -147,14 +147,29 @@ export function TaskIndicator({ taskID, onTaskCancelled }: TaskIndicatorProps) { return ( -
+
-
+
{getStatusIcon()} - - {isInProgress ? getProgressText() : taskStatus} - + {isInProgress && ( +
+
+
+
+ + {getProgressText()} + +
+ )} + {!isInProgress && ( + + {taskStatus} + + )}