diff --git a/public/pages/workflow_detail/workflow_inputs/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx b/public/pages/workflow_detail/workflow_inputs/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx index 882c62fb..34b3d552 100644 --- a/public/pages/workflow_detail/workflow_inputs/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx +++ b/public/pages/workflow_detail/workflow_inputs/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx @@ -125,7 +125,6 @@ export function ConfigureMultiExpressionModal( const [tempErrors, setTempErrors] = useState(false); // get some current form values - const fullResponsePathPath = `${props.baseConfigPath}.${props.config.id}.full_response_path`; const docs = getIn(values, 'ingest.docs'); let docObjs = [] as {}[] | undefined; try { @@ -445,14 +444,6 @@ export function ConfigureMultiExpressionModal( props.outputMapFieldPath, [] ); - set( - valuesWithoutOutputMapConfig, - fullResponsePathPath, - getIn( - formikProps.values, - 'full_response_path' - ) - ); const curIngestPipeline = formikToPartialPipeline( valuesWithoutOutputMapConfig, props.uiConfig, @@ -515,14 +506,6 @@ export function ConfigureMultiExpressionModal( props.outputMapFieldPath, [] ); - set( - valuesWithoutOutputMapConfig, - fullResponsePathPath, - getIn( - formikProps.values, - 'full_response_path' - ) - ); const curSearchPipeline = formikToPartialPipeline( valuesWithoutOutputMapConfig, props.uiConfig,