From 4edb197049f53a26c3ae3a832068489ba9d08a6d Mon Sep 17 00:00:00 2001 From: wongpratan Date: Tue, 29 Apr 2025 16:42:26 +0700 Subject: [PATCH] *Fix undefined - https://github.com/digi-serve/ns_app/issues/602 --- .../Designer/properties/process/ABProcessGatewayExclusive.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rootPages/Designer/properties/process/ABProcessGatewayExclusive.js b/src/rootPages/Designer/properties/process/ABProcessGatewayExclusive.js index cfa093d..566817f 100644 --- a/src/rootPages/Designer/properties/process/ABProcessGatewayExclusive.js +++ b/src/rootPages/Designer/properties/process/ABProcessGatewayExclusive.js @@ -164,6 +164,7 @@ export default function (AB) { myOutgoingConnections.forEach((conn) => { const condition = this.conditions[conn.id] || {}; const DF = this.__dfLookup[conn.id]; + if (DF == null) return; // NOTE: keep the DF.fieldsLoad() AFTER the ui is built. DF.fieldsLoad(abFields);