theprogrammablemind_4wp 7.6.0-beta.4 → 7.6.0-beta.5

Sign up to get free protection for your applications and to get access to all the features.
package/client.js CHANGED
@@ -1674,7 +1674,9 @@ const knowledgeModule = async ({
1674
1674
  config.config.rebuild = true
1675
1675
  }
1676
1676
  config.load(template.template, template.instance, { rebuild: needsRebuild })
1677
- printConfig()
1677
+ if (!args.query) {
1678
+ printConfig()
1679
+ }
1678
1680
  if (needsRebuild) {
1679
1681
  return
1680
1682
  }
package/package.json CHANGED
@@ -64,6 +64,6 @@
64
64
  "json-stable-stringify": "^1.0.1",
65
65
  "node-fetch": "^2.6.1"
66
66
  },
67
- "version": "7.6.0-beta.4",
67
+ "version": "7.6.0-beta.5",
68
68
  "license": "ISC"
69
69
  }
package/src/flatten.js CHANGED
@@ -81,6 +81,9 @@ const flatten = (markers, value) => {
81
81
  return flattenListHelper(markers, value)
82
82
  }
83
83
 
84
+ if (value.flatten === false) {
85
+ return [[value], false]
86
+ }
84
87
  const marker = value.marker
85
88
  let properties = value
86
89