Browse Source

fix: insert data block inserting value to the wrong column

Ahmad Kholid 3 years ago
parent
commit
e0e6ec247e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/components/newtab/workflow/edit/EditInsertData.vue

+ 2 - 2
src/components/newtab/workflow/edit/EditInsertData.vue

@@ -39,8 +39,8 @@
           >
             <option
               v-for="column in workflow.data.value.table"
-              :key="column.name"
-              :value="column.name"
+              :key="column.id"
+              :value="column.id"
             >
               {{ column.name }}
             </option>