diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.debug.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.debug.js index cdc0d17b..8b2551d6 100755 --- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.debug.js +++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.debug.js @@ -4069,18 +4069,18 @@ var Designer = { } } var key = q.name; - if (specialShapeConfig == undefined || specialShapeConfig.length == 0) { + if (specialShapeConfig == undefined) { if (commonShapeConfig != undefined && commonShapeConfig[key] != undefined) { commonShapeConfig = commonShapeConfig[key]; this.handleShapeConfigData(commonShapeConfig, q, attributesJsonArray); } } else { - if (commonShapeConfig == undefined || commonShapeConfig.length == 0) { + if (commonShapeConfig == undefined) { this.handleShapeConfigData(Utils.copy(specialShapeConfig), q, attributesJsonArray); } else { commonShapeConfig = commonShapeConfig[key]; var tempCommonShapeConfig = []; - if (commonShapeConfig != undefined && commonShapeConfig.length > 0) { + if (commonShapeConfig != undefined) { var dataArray = []; var tempArray = []; for (i = 0; i < commonShapeConfig.length; i++) {