goby-database 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -723,7 +723,7 @@ class Project{
723
723
  let items=this.db.prepare(`SELECT system_root.*
724
724
  FROM system_root
725
725
  LEFT JOIN workspace_${id}
726
- ON system_root.id = workspace_1.concept_id
726
+ ON system_root.id = workspace_${id}.concept_id
727
727
  WHERE workspace_${id}.type = 'item';
728
728
  `).all();
729
729
  // get any relevant classes (going to hold off from this for now)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goby-database",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "This will hold the core better-sqlite3-powered application for creating and modifying goby databases",
5
5
  "main": "index.js",
6
6
  "scripts": {