Feat: Importing data flow files from the list page #9869 (#10446)

### What problem does this PR solve?

Feat: Importing data flow files from the list page #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-09 19:03:29 +08:00
committed by GitHub
parent f04c9e2937
commit f4324e89d9
9 changed files with 90 additions and 41 deletions

View File

@ -162,9 +162,9 @@ export default function DataFlow() {
onClick={handleRunAgent}
loading={running}
>
{running || (
<CirclePlay className={isParsing ? 'animate-spin' : ''} />
)}
<CirclePlay
className={isParsing || isLogEmpty ? 'animate-spin' : ''}
/>
{isParsing || running ? t('dataflow.running') : t('flow.run')}
</ButtonLoading>