瀏覽代碼

fix: variable storage name

Ahmad Kholid 1 年之前
父節點
當前提交
7f540017a4
共有 1 個文件被更改,包括 1 次插入1 次删除
  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),
       });
     }