Feat: Add context node #9869 (#10266)

### What problem does this PR solve?

Feat: Add context node #9869
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-09-24 18:48:31 +08:00
committed by GitHub
parent 6bf0cda16f
commit afb8a84f7b
13 changed files with 155 additions and 16 deletions

View File

@ -136,9 +136,13 @@ export default function DataFlow() {
>
<LaptopMinimalCheck /> {t('flow.save')}
</ButtonLoading>
<Button variant={'secondary'} onClick={handleRunAgent}>
<Button
variant={'secondary'}
onClick={handleRunAgent}
disabled={isParsing}
>
<CirclePlay className={isParsing ? 'animate-spin' : ''} />
{isParsing ? 'running' : t('flow.run')}
{isParsing ? t('dataflow.running') : t('flow.run')}
</Button>
<Button variant={'secondary'} onClick={showVersionDialog}>
<History />