From ded080ae041fc17d783b0d2b7209378f5bd3726a Mon Sep 17 00:00:00 2001 From: Mary Hipp Date: Mon, 7 Apr 2025 15:49:47 -0400 Subject: [PATCH] show cancel icon and not retry icon on validation run queue items --- .../queue/components/QueueList/QueueItemComponent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/features/queue/components/QueueList/QueueItemComponent.tsx b/invokeai/frontend/web/src/features/queue/components/QueueList/QueueItemComponent.tsx index b1b385d56d..25ff849a61 100644 --- a/invokeai/frontend/web/src/features/queue/components/QueueList/QueueItemComponent.tsx +++ b/invokeai/frontend/web/src/features/queue/components/QueueList/QueueItemComponent.tsx @@ -124,7 +124,7 @@ const QueueItemComponent = ({ index, item, context }: InnerItemProps) => { - {(!isFailed || !isRetryEnabled) && ( + {(!isFailed || !isRetryEnabled || isValidationRun) && ( { icon={} /> )} - {isFailed && isRetryEnabled && ( + {isFailed && isRetryEnabled && !isValidationRun && (