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 && (