web/ProcessingQueueItem: state icons, localized strings, fix line break

This commit is contained in:
wukko
2025-01-26 01:34:56 +06:00
parent 73d2f45dae
commit c3cc6c09f4
6 changed files with 73 additions and 33 deletions

View File

@@ -24,6 +24,7 @@ export const checkTasks = () => {
const pipelineItem = task.pipeline[i];
addWorkerToQueue(pipelineItem.workerId, {
type: pipelineItem.worker,
parentId: task.id,
});

View File

@@ -1,6 +1,7 @@
import type { CobaltWorkerProgress } from "$lib/types/workers";
import type { CobaltWorkerProgress, CobaltWorkerType } from "$lib/types/workers";
export type CobaltCurrentTaskItem = {
type: CobaltWorkerType,
parentId: string,
progress?: CobaltWorkerProgress,
}