fix: workflow logs list (#25903)

This commit is contained in:
zxhlyh 2025-09-18 15:45:37 +08:00 committed by GitHub
parent d8b4bbe067
commit fadd9e0bf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ const DetailPanel: FC<ILogDetail> = ({ runID, onClose }) => {
</span> </span>
<h1 className='system-xl-semibold shrink-0 px-4 py-1 text-text-primary'>{t('appLog.runDetail.workflowTitle')}</h1> <h1 className='system-xl-semibold shrink-0 px-4 py-1 text-text-primary'>{t('appLog.runDetail.workflowTitle')}</h1>
<Run <Run
runDetailUrl={`/apps/${appDetail?.id}/workflow-runs/${runID}`} runDetailUrl={runID ? `/apps/${appDetail?.id}/workflow-runs/${runID}` : ''}
tracingListUrl={`/apps/${appDetail?.id}/workflow-runs/${runID}/node-executions`} tracingListUrl={runID ? `/apps/${appDetail?.id}/workflow-runs/${runID}/node-executions` : ''}
/> />
</div> </div>
) )