Skip to content

Commit 7287197

Browse files
author
Attila Cseh
committed
createdAt column fixed
1 parent 543e66b commit 7287197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/queue/components/QueueList/QueueItemComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const QueueItemComponent = ({ index, item }: InnerItemProps) => {
8686
<QueueStatusBadge status={item.status} />
8787
</Flex>
8888
<Flex w={COLUMN_WIDTHS.createdAt} alignItems="center" flexShrink={0}>
89-
{item.completed_at || '-'}
89+
{item.created_at}
9090
</Flex>
9191
<Flex w={COLUMN_WIDTHS.completedAt} alignItems="center" flexShrink={0}>
9292
{item.completed_at || '-'}

0 commit comments

Comments
 (0)