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.
- package/index.js +1 -1
- 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 =
|
|
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)
|