Explorar el Código

fix: variable storage name

Ahmad Kholid hace 1 año
padre
commit
7f540017a4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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),
       });
     }