diff --git a/frontend/app/history/page.tsx b/frontend/app/history/page.tsx
index b4adf36..14a9fc1 100644
--- a/frontend/app/history/page.tsx
+++ b/frontend/app/history/page.tsx
@@ -214,10 +214,10 @@ export default function HistoryPage() {
{job.completed_at
? `${Math.round(
- (new Date(job.completed_at).getTime() -
- new Date(job.created_at).getTime()) /
- 1000
- )}s`
+ (new Date(job.completed_at).getTime() -
+ new Date(job.created_at).getTime()) /
+ 1000
+ )}s`
: '-'}
|
@@ -229,6 +229,24 @@ export default function HistoryPage() {
>
+ {(job.status === 'queued' || job.status === 'processing') && (
+
+ )}
{job.output_asset_ids?.[0] && (
|