File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
libs/web-flow-executor/src/nodes Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -116,5 +116,6 @@ export const transformJSON = (
116116 return newJson ;
117117 } else {
118118 console . log ( path , json ) ;
119+ return json ;
119120 }
120121} ;
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ import { NodeInfo } from '../types/node-info';
1616import { RunCounter } from '../follow-path/run-counter' ;
1717import { runNode , getRunIndex } from '../flow-engine/flow-engine' ;
1818
19- function parseStringToFloat ( value : string ) : number {
20- return parseFloat ( value . toString ( ) . replace ( ',' , '.' ) ) ;
21- }
22-
2319export 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) {
You can’t perform that action at this time.
0 commit comments