BatchDialog
The batch operation dialog: pick one operation to run across the selected files. The options themselves come from the Advanced settings (Whisper / conversion) or the LLM Template (subtitle fix), so this is just a picker. Submitting drops a batch job into the Tasks tray.
Functions¶
BatchDialog()¶
Defined in: src/features/profile/components/BatchDialog.tsx:73
The BatchDialog component.
Parameters¶
| Parameter | Type | Description |
|---|---|---|
props |
{ files: ProfileFile[]; onClose: () => void; onSubmitted?: () => void; open: boolean; } |
The props. |
props.files |
ProfileFile[] |
The selected profile files. |
props.onClose |
() => void |
Closes the dialog. |
props.onSubmitted? |
() => void |
Called after a batch is submitted. |
props.open |
boolean |
Whether the dialog is open. |
Returns¶
Element
The dialog.