diff --git a/web/app/components/app/workflow-log/index.tsx b/web/app/components/app/workflow-log/index.tsx index b7f0d6e3bd..2dc3d8cb91 100644 --- a/web/app/components/app/workflow-log/index.tsx +++ b/web/app/components/app/workflow-log/index.tsx @@ -35,12 +35,12 @@ const EmptyElement: FC<{ appUrl: string }> = ({ appUrl }) => { const pathSegments = pathname.split('/') pathSegments.pop() return
- | {t('appLog.table.header.startTime')} | -{t('appLog.table.header.status')} | -{t('appLog.table.header.runtime')} | -{t('appLog.table.header.tokens')} | -{t('appLog.table.header.user')} | - {/*{t('appLog.table.header.version')} | */} ++ | {t('appLog.table.header.startTime')} | +{t('appLog.table.header.status')} | +{t('appLog.table.header.runtime')} | +{t('appLog.table.header.tokens')} | +{t('appLog.table.header.user')} |
{!log.read_at && } | -{formatTime(log.created_at, t('appLog.dateTimeFormat') as string)} | -{statusTdRender(log.workflow_run.status)} | -+ |
+ {!log.read_at && (
+
+
+
+ )}
+ |
+ {formatTime(log.created_at, t('appLog.dateTimeFormat') as string)} | +{statusTdRender(log.workflow_run.status)} | +
{`${log.workflow_run.elapsed_time.toFixed(3)}s`}
|
- {log.workflow_run.total_tokens} | -
-
+ {log.workflow_run.total_tokens} |
+
+ |
- {/*
{endUser}
VERSION | */}
|