chore: Disable post process during fn determination (#23289)
Fixes https://github.com/appsmithorg/appsmith/issues/22714 Fixes https://github.com/appsmithorg/appsmith/issues/22636 Fixes https://github.com/appsmithorg/appsmith/issues/22779
This commit is contained in:
parent
c431e017b1
commit
6e248577c4
|
|
@ -264,6 +264,7 @@ export function isJSObjectVariable(
|
|||
configTree: ConfigTree,
|
||||
) {
|
||||
const entityConfig = configTree[jsObjectName] as JSActionEntityConfig;
|
||||
if (!entityConfig) return false;
|
||||
const entity = configTree[jsObjectName];
|
||||
const variables = entityConfig.variables;
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ class FunctionDeterminer {
|
|||
|
||||
ExecutionMetaData.setExecutionMetaData({
|
||||
enableJSVarUpdateTracking: false,
|
||||
enableJSFnPostProcessors: false,
|
||||
});
|
||||
|
||||
addDataTreeToContext({
|
||||
|
|
@ -38,6 +39,7 @@ class FunctionDeterminer {
|
|||
userLogs.enable();
|
||||
ExecutionMetaData.setExecutionMetaData({
|
||||
enableJSVarUpdateTracking: true,
|
||||
enableJSFnPostProcessors: true,
|
||||
});
|
||||
|
||||
if (!dataTreeEvaluator) return;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user