From 4bbb9a600b165964ab2147e073ad41d7b86bbdfd Mon Sep 17 00:00:00 2001 From: Anderson Shindy Oki Date: Mon, 20 Jul 2026 14:22:59 +0900 Subject: [PATCH] Fixed job manager running job icon (#3452) --- frontend/src/App/JobsManager.tsx | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/frontend/src/App/JobsManager.tsx b/frontend/src/App/JobsManager.tsx index 908c553ef..e83ed4d68 100644 --- a/frontend/src/App/JobsManager.tsx +++ b/frontend/src/App/JobsManager.tsx @@ -421,19 +421,21 @@ const JobsManager: FunctionComponent = ({ justify="center" style={{ width: 42, height: 42 }} > - + {status === "completed" ? ( + + ) : status === "failed" ? ( + + ) : ( + + )} ))}