Commit 8d811df9 authored by Joel's avatar Joel

feat:btn

parent 57de19a5
...@@ -339,6 +339,10 @@ const TextGeneration: FC<IMainProps> = ({ ...@@ -339,6 +339,10 @@ const TextGeneration: FC<IMainProps> = ({
<div className={s.starIcon}></div> <div className={s.starIcon}></div>
<div className='text-lg text-gray-800 font-semibold'>{t('share.generation.title')}</div> <div className='text-lg text-gray-800 font-semibold'>{t('share.generation.title')}</div>
</div> </div>
<div className='flex items-center space-x-1'>
<Button className='h-8' >
Download
</Button>
{!isPC && ( {!isPC && (
<div <div
className='flex items-center justify-center cursor-pointer' className='flex items-center justify-center cursor-pointer'
...@@ -349,6 +353,8 @@ const TextGeneration: FC<IMainProps> = ({ ...@@ -349,6 +353,8 @@ const TextGeneration: FC<IMainProps> = ({
)} )}
</div> </div>
</div>
<div className='grow overflow-y-auto'> <div className='grow overflow-y-auto'>
{!isCallBatchAPI ? renderRes() : renderBatchRes()} {!isCallBatchAPI ? renderRes() : renderBatchRes()}
{!noPendingTask && ( {!noPendingTask && (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment