Kaynağa Gözat

fix: variable storage name

Ahmad Kholid 1 yıl önce
ebeveyn
işleme
7f540017a4
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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),
       });
     }