@adminforth/bulk-ai-flow 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build.log CHANGED
@@ -10,5 +10,5 @@ custom/tsconfig.json
10
10
  custom/visionAction.vue
11
11
  custom/visionTable.vue
12
12
 
13
- sent 24,084 bytes received 115 bytes 48,398.00 bytes/sec
14
- total size is 23,659 speedup is 0.98
13
+ sent 24,151 bytes received 115 bytes 48,532.00 bytes/sec
14
+ total size is 23,732 speedup is 0.98
@@ -131,9 +131,9 @@ function generateTableColumns() {
131
131
  }
132
132
  reqFields.label = record._label;
133
133
  reqFields.images = images.value[index];
134
- reqFields.id = record.id;
134
+ reqFields[primaryKey] = record[primaryKey];
135
135
  indexes.push({
136
- id: record.id,
136
+ [primaryKey]: record[primaryKey],
137
137
  label: record._label,
138
138
  });
139
139
  tableData.push(reqFields);
@@ -49,6 +49,7 @@
49
49
  <Select
50
50
  :options="convertColumnEnumToSelectOptions(props.meta.columnEnums, n)"
51
51
  v-model="selected[tableColumnsIndexes.findIndex(el => el[primaryKey] === item[primaryKey])][n]"
52
+ :teleportToTop="true"
52
53
  >
53
54
  </Select>
54
55
  </div>
@@ -131,9 +131,9 @@ function generateTableColumns() {
131
131
  }
132
132
  reqFields.label = record._label;
133
133
  reqFields.images = images.value[index];
134
- reqFields.id = record.id;
134
+ reqFields[primaryKey] = record[primaryKey];
135
135
  indexes.push({
136
- id: record.id,
136
+ [primaryKey]: record[primaryKey],
137
137
  label: record._label,
138
138
  });
139
139
  tableData.push(reqFields);
@@ -49,6 +49,7 @@
49
49
  <Select
50
50
  :options="convertColumnEnumToSelectOptions(props.meta.columnEnums, n)"
51
51
  v-model="selected[tableColumnsIndexes.findIndex(el => el[primaryKey] === item[primaryKey])][n]"
52
+ :teleportToTop="true"
52
53
  >
53
54
  </Select>
54
55
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/bulk-ai-flow",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },