feat: auto-focus URL input when batch import modal opens

This commit is contained in:
Will Miao
2026-03-18 22:33:45 +08:00
parent fefcaa4a45
commit 03e1fa75c5

View File

@@ -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);
}
/**