diff --git a/static/js/managers/BatchImportManager.js b/static/js/managers/BatchImportManager.js index 53984a6b..fff900bb 100644 --- a/static/js/managers/BatchImportManager.js +++ b/static/js/managers/BatchImportManager.js @@ -104,6 +104,14 @@ export class BatchImportManager { // Clean up any existing connections this.cleanupConnections(); + + // Focus on the URL input field for better UX + setTimeout(() => { + const urlInput = document.getElementById('batchUrlInput'); + if (urlInput) { + urlInput.focus(); + } + }, 100); } /**