mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-30 00:32:30 +08:00
Feat: When saving the canvas, other dls parameters passed from the backend are spliced into the dsl parameters #3355 (#3558)
### What problem does this PR solve? Feat: When saving the canvas, other dls parameters passed from the backend are spliced into the dsl parameters #3355 #3556 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -35,10 +35,10 @@ export function NextNodePopover({ children, nodeId, name }: IProps) {
|
||||
|
||||
const inputs: Array<{ component_id: string; content: string }> = get(
|
||||
component,
|
||||
['obj', 'params', 'inputs'],
|
||||
['obj', 'inputs'],
|
||||
[],
|
||||
);
|
||||
const output = get(component, ['obj', 'params', 'output'], {});
|
||||
const output = get(component, ['obj', 'output'], {});
|
||||
const { replacedOutput } = useReplaceIdWithText(output);
|
||||
const stopPropagation: MouseEventHandler = useCallback((e) => {
|
||||
e.stopPropagation();
|
||||
|
||||
Reference in New Issue
Block a user