This is an automated email from the ASF dual-hosted git repository. aicam pushed a commit to branch revert-3667-3562 in repository https://gitbox.apache.org/repos/asf/texera.git
commit 51915c9fa1ed16af08091ddc02a1e9511ec04816 Author: ali risheh <[email protected]> AuthorDate: Thu Aug 28 11:42:26 2025 -0700 Revert "fix: improve equality check for PortSchemas (#3667)" This reverts commit 52ed19f9f6ceb480ca9368823cb2a34287d0f03e. --- core/gui/src/app/common/util/workflow-compilation-utils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/gui/src/app/common/util/workflow-compilation-utils.ts b/core/gui/src/app/common/util/workflow-compilation-utils.ts index c42333cb18..de74872db9 100644 --- a/core/gui/src/app/common/util/workflow-compilation-utils.ts +++ b/core/gui/src/app/common/util/workflow-compilation-utils.ts @@ -18,7 +18,6 @@ import { CompilationState, CompilationStateInfo, PortSchema } from "../../workspace/types/workflow-compiling.interface"; import { WorkflowFatalError } from "../../workspace/types/workflow-websocket.interface"; -import { isEqual } from "lodash"; /** * Checks if all PortSchemas in an array are equal to each other. @@ -31,7 +30,7 @@ export function areAllPortSchemasEqual(schemas: (PortSchema | undefined)[]): boo if (schemas.length <= 1) { return true; } - return schemas.every(schema => isEqual(schemas[0], schema)); + return schemas.every(schema => schema === schemas[0]); } /**
