| | |
| | | return ( |
| | | <div className='bg-background-section-burn'> |
| | | {isRunning && !outputs && ( |
| | | <div className='pl-[26px] pt-4'> |
| | | <div className='pt-4 pl-[26px]'> |
| | | <LoadingAnim type='text' /> |
| | | </div> |
| | | )} |
| | |
| | | </div> |
| | | )} |
| | | {!isRunning && !outputs && !error && !allFiles?.length && ( |
| | | <div className='mt-[120px] flex flex-col items-center px-4 py-2 text-[13px] leading-[18px] text-gray-500'> |
| | | <ImageIndentLeft className='h-6 w-6 text-gray-400' /> |
| | | <div className='mt-[120px] px-4 py-2 flex flex-col items-center text-[13px] leading-[18px] text-gray-500'> |
| | | <ImageIndentLeft className='w-6 h-6 text-gray-400' /> |
| | | <div className='mr-2'>{t('runLog.resultEmpty.title')}</div> |
| | | <div> |
| | | {t('runLog.resultEmpty.tipLeft')} |
| | |
| | | </div> |
| | | )} |
| | | {!!allFiles?.length && allFiles.map(item => ( |
| | | <div key={item.varName} className='system-xs-regular flex flex-col gap-1 px-4 py-2'> |
| | | <div key={item.varName} className='px-4 py-2 flex flex-col gap-1 system-xs-regular'> |
| | | <div className='py-1 text-text-tertiary '>{item.varName}</div> |
| | | <FileList |
| | | files={item.list} |