Browse Source

fix: variable storage name

Ahmad Kholid 1 year ago
parent
commit
7f540017a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/workflowEngine/WorkflowWorker.js

+ 1 - 1
src/workflowEngine/WorkflowWorker.js

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