We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0255ea commit 19e705aCopy full SHA for 19e705a
apps/vps-web/src/app/custom-nodes/classes/rect-node-class.tsx
@@ -29,9 +29,10 @@ export class RectNode extends BaseRectNode {
29
_payload?: any
30
): Promise<IComputeResult> => {
31
return new Promise<IComputeResult>((resolve) => {
32
+ const data = (this.node?.nodeInfo as any)?.text ?? input;
33
resolve({
- result: input,
34
- output: input,
+ result: data,
35
+ output: data,
36
followPath: undefined,
37
});
38
0 commit comments