@adminforth/bulk-ai-flow 1.10.0 → 1.10.1
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 +2 -2
- package/custom/VisionAction.vue +3 -0
- package/dist/custom/VisionAction.vue +3 -0
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -11,5 +11,5 @@ custom/package-lock.json
|
|
|
11
11
|
custom/package.json
|
|
12
12
|
custom/tsconfig.json
|
|
13
13
|
|
|
14
|
-
sent 186,
|
|
15
|
-
total size is 185,
|
|
14
|
+
sent 186,437 bytes received 134 bytes 373,142.00 bytes/sec
|
|
15
|
+
total size is 185,911 speedup is 1.00
|
package/custom/VisionAction.vue
CHANGED
|
@@ -546,6 +546,9 @@ async function runAiAction({
|
|
|
546
546
|
if (actionType !== 'analyze_no_images' || !props.meta.isFieldsForAnalizeFromImages) {
|
|
547
547
|
responseFlag.value[index] = true;
|
|
548
548
|
}
|
|
549
|
+
if (index !== -1) {
|
|
550
|
+
jobsIds.splice(jobsIds.findIndex(j => j.jobId === jobId), 1);
|
|
551
|
+
}
|
|
549
552
|
adminforth.alert({
|
|
550
553
|
message: `Generation action "${actionType.replace('_', ' ')}" failed for record: ${recordId}. Error: ${jobResponse.job?.error || 'Unknown error'}`,
|
|
551
554
|
variant: 'danger',
|
|
@@ -546,6 +546,9 @@ async function runAiAction({
|
|
|
546
546
|
if (actionType !== 'analyze_no_images' || !props.meta.isFieldsForAnalizeFromImages) {
|
|
547
547
|
responseFlag.value[index] = true;
|
|
548
548
|
}
|
|
549
|
+
if (index !== -1) {
|
|
550
|
+
jobsIds.splice(jobsIds.findIndex(j => j.jobId === jobId), 1);
|
|
551
|
+
}
|
|
549
552
|
adminforth.alert({
|
|
550
553
|
message: `Generation action "${actionType.replace('_', ' ')}" failed for record: ${recordId}. Error: ${jobResponse.job?.error || 'Unknown error'}`,
|
|
551
554
|
variant: 'danger',
|