Sfoglia il codice sorgente

fix: variable storage name

Ahmad Kholid 1 anno fa
parent
commit
7f540017a4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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),
       });
     }