theprogrammablemind_4wp 7.3.12-beta.2 → 7.4.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/client.js +6 -4
- package/package.json +1 -1
package/client.js
CHANGED
@@ -174,11 +174,13 @@ const processContexts = (contexts, params) => {
|
|
174
174
|
return { contexts: contextsPrime, generated, logs }
|
175
175
|
}
|
176
176
|
|
177
|
-
const getObjects = (objects) =>
|
178
|
-
|
179
|
-
|
177
|
+
const getObjects = (objects) => {
|
178
|
+
return (uuid) => {
|
179
|
+
if (objects && objects.namespaced) {
|
180
|
+
return objects.namespaced[uuid]
|
181
|
+
}
|
182
|
+
return objects
|
180
183
|
}
|
181
|
-
return objects
|
182
184
|
}
|
183
185
|
|
184
186
|
const processContext = (context, { objects = {}, config, logs = [] }) => {
|