theprogrammablemind 7.10.0-beta.11 → 7.10.0-beta.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.js +1 -1
- package/package.json +1 -1
- package/src/config.js +0 -3
package/client.js
CHANGED
@@ -637,7 +637,7 @@ const loadInstance = (config, instance) => {
|
|
637
637
|
// config.addInternal(results, useOldVersion = true, skipObjects = false, includeNamespaces = true, allowNameToBeNull = false)
|
638
638
|
// config.addInternal(config.template.queries[i], { handleCalculatedProps: true } )
|
639
639
|
const uuid = config.nameToUUID(instance.name)
|
640
|
-
config.addInternal(instance.template.queries[i], { uuid, addFirst: true, handleCalculatedProps: true } )
|
640
|
+
config.addInternal(_.cloneDeep(instance.template.queries[i]), { uuid, addFirst: true, handleCalculatedProps: true } )
|
641
641
|
} else if (results.apply) {
|
642
642
|
const objects = config.get('objects')
|
643
643
|
const args = { objects, getObjects: getObjects(objects) }
|
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -204,9 +204,6 @@ const handleBridgeProps = (config, bridge, addFirst) => {
|
|
204
204
|
ecatch(`While processing the bridge for ${bridge.id}#${bridge.level}`,
|
205
205
|
() => {
|
206
206
|
if (!bridge.bridge) {
|
207
|
-
if (bridge.id == 'modification') {
|
208
|
-
debugger
|
209
|
-
}
|
210
207
|
bridge.bridge = "{ ...next(operator) }"
|
211
208
|
}
|
212
209
|
if (!bridge.level) {
|