@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,
|
|
14
|
-
total size is 23,
|
|
13
|
+
sent 24,151 bytes received 115 bytes 48,532.00 bytes/sec
|
|
14
|
+
total size is 23,732 speedup is 0.98
|
package/custom/visionAction.vue
CHANGED
|
@@ -131,9 +131,9 @@ function generateTableColumns() {
|
|
|
131
131
|
}
|
|
132
132
|
reqFields.label = record._label;
|
|
133
133
|
reqFields.images = images.value[index];
|
|
134
|
-
reqFields
|
|
134
|
+
reqFields[primaryKey] = record[primaryKey];
|
|
135
135
|
indexes.push({
|
|
136
|
-
|
|
136
|
+
[primaryKey]: record[primaryKey],
|
|
137
137
|
label: record._label,
|
|
138
138
|
});
|
|
139
139
|
tableData.push(reqFields);
|
package/custom/visionTable.vue
CHANGED
|
@@ -131,9 +131,9 @@ function generateTableColumns() {
|
|
|
131
131
|
}
|
|
132
132
|
reqFields.label = record._label;
|
|
133
133
|
reqFields.images = images.value[index];
|
|
134
|
-
reqFields
|
|
134
|
+
reqFields[primaryKey] = record[primaryKey];
|
|
135
135
|
indexes.push({
|
|
136
|
-
|
|
136
|
+
[primaryKey]: record[primaryKey],
|
|
137
137
|
label: record._label,
|
|
138
138
|
});
|
|
139
139
|
tableData.push(reqFields);
|