Skip to content
Snippets Groups Projects

Store created elements in a local SQLite database

Merged Eva Bardou requested to merge sqlite-database into master
All threads resolved!
7 files
+ 169
2
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 1
1
@@ -466,7 +466,7 @@ class ElementsWorker(BaseWorker):
try:
to_insert = [
{
"id": uuid.UUID(created_ids[idx]).hex,
"id": uuid.UUID(created_ids[idx]["id"]).hex,
"parent_id": uuid.UUID(parent.id).hex,
"name": element["name"],
"type": element["type"],
Loading