Files
ragflow/web/src/pages/data-flow/form/parser-form/utils.ts
balibabu 3404469e2a Feat: Dynamically increase the configuration of the parser operator #9869 (#10060)
### What problem does this PR solve?

Feat: Dynamically increase the configuration of the parser operator
#9869
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-09-12 10:14:26 +08:00

4 lines
105 B
TypeScript

export function buildFieldNameWithPrefix(name: string, prefix: string) {
return `${prefix}.${name}`;
}