diff --git a/web/src/components/batch-operations/BatchOperationsPanel.tsx b/web/src/components/batch-operations/BatchOperationsPanel.tsx index 4009dfcb..a85901c3 100644 --- a/web/src/components/batch-operations/BatchOperationsPanel.tsx +++ b/web/src/components/batch-operations/BatchOperationsPanel.tsx @@ -67,7 +67,7 @@ interface BatchOperationsPanelProps { export function BatchOperationsPanel({ onExecute, onUndo, className }: BatchOperationsPanelProps) { const [state, setState] = useState({ - type: null, + type: 'batch_edit', isRunning: false, progress: 0, preview: null, @@ -179,7 +179,7 @@ export function BatchOperationsPanel({ onExecute, onUndo, className }: BatchOper const handleClear = useCallback(() => { setState({ - type: null, + type: 'batch_edit', isRunning: false, progress: 0, preview: null, @@ -408,14 +408,30 @@ export function BatchOperationsPanel({ onExecute, onUndo, className }: BatchOper

Batch Operations

{/* Tabs */} -
+