Build scripts

This commit is contained in:
2026-08-05 22:59:23 -05:00
parent 4f10991abc
commit cee9f6a02f
18 changed files with 183 additions and 338 deletions

View File

@@ -68,7 +68,7 @@ function buildRow(entry) {
const cover = document.createElement("img");
cover.className = "cover-image";
cover.src = entry.coverImageUrl || "icons/icon-48.png";
cover.src = entry.coverImageUrl || "logo-single.png";
cover.alt = "Cover art";
cover.loading = "lazy";
@@ -149,7 +149,7 @@ async function loadCapturedUrls() {
listEl.innerHTML = "";
const entries = Array.isArray(response.entries) ? response.entries : [];
if (!entries.length) {
setStatus("No captured S3 URLs for this tab yet.");
setStatus("No captured samples for this tab yet.");
return;
}