From 16d063efd98402b9752b687721b2024e6c3ca37b Mon Sep 17 00:00:00 2001 From: Scott Dickerson Date: Mon, 1 Jul 2024 13:02:41 -0400 Subject: [PATCH] :ghost: Align TaskStateIcon Icon status fields with IconedStatus (#1989) Align `TaskStateIcon` Icon status fields with `IconedStatus`. This amounts to setting some icons blue instead of black consistently across tables and the drawer. Related to #1985 Signed-off-by: Scott J Dickerson --- .../src/app/components/Icons/TaskStateIcon.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/client/src/app/components/Icons/TaskStateIcon.tsx b/client/src/app/components/Icons/TaskStateIcon.tsx index 11af306b5c..e78e30f343 100644 --- a/client/src/app/components/Icons/TaskStateIcon.tsx +++ b/client/src/app/components/Icons/TaskStateIcon.tsx @@ -18,21 +18,29 @@ export const TaskStateIcon: FC<{ state?: TaskState }> = ({ state }) => { case "No task": return ; case "Canceled": - return ; + return ( + + + + ); case "Succeeded": return ( - + ); case "Failed": return ( - + ); case "Running": - return ; + return ( + + + + ); case "Pending": return ; case "QuotaBlocked":