Browse Source

fix: variable storage name

Ahmad Kholid 1 năm trước cách đây
mục cha
commit
7f540017a4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/workflowEngine/WorkflowWorker.js

+ 1 - 1
src/workflowEngine/WorkflowWorker.js

@@ -129,7 +129,7 @@ class WorkflowWorker {
     if (variableName.startsWith('$$')) {
       dbStorage.variables.put({
         value,
-        name: variableName,
+        name: variableName.slice(2),
       });
     }