ui: move search results below download/extract controls

Search bar stays at top as the "command center".
Download queue and extract controls follow.
Results render at the bottom — the main scrolling area.
This commit is contained in:
2026-06-21 22:35:18 -07:00
parent 31fd368bda
commit f195ba5a5c
2 changed files with 6 additions and 1 deletions
+1
View File
@@ -29,6 +29,7 @@ async function doSearch() {
const resp = await fetch(`${API}/search?${params}`);
const data = await resp.json();
status.textContent = `Found ${data.length} items`;
document.getElementById('result-count').textContent = `(${data.length})`;
renderResults(data);
} catch (e) {
status.textContent = 'Search failed: ' + e.message;