Skip to content

Commit f8b261a

Browse files
committed
build fixes
1 parent e2b263e commit f8b261a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

libs/web-flow-executor/src/nodes/json-utils/transform-json.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,6 @@ export const transformJSON = (
116116
return newJson;
117117
} else {
118118
console.log(path, json);
119+
return json;
119120
}
120121
};

libs/web-flow-executor/src/nodes/user-text-input.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ import { NodeInfo } from '../types/node-info';
1616
import { RunCounter } from '../follow-path/run-counter';
1717
import { runNode, getRunIndex } from '../flow-engine/flow-engine';
1818

19-
function parseStringToFloat(value: string): number {
20-
return parseFloat(value.toString().replace(',', '.'));
21-
}
22-
2319
export const getUserTextInput =
2420
(
2521
createRunCounterContext: (
@@ -127,6 +123,7 @@ export const getUserTextInput =
127123
);
128124
return false;
129125
}
126+
return true;
130127
},
131128
onChange: (value: string) => {
132129
// if (isResettingInput) {

0 commit comments

Comments
 (0)