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

@@ -56,7 +56,7 @@ function buildItem(entry) {
const cover = document.createElement("img");
cover.className = "history-cover-image";
cover.src = entry.coverImageUrl || "icons/icon-48.png";
cover.src = entry.coverImageUrl || "logo-single.png";
cover.alt = "Cover art";
cover.loading = "lazy";
@@ -126,7 +126,7 @@ async function loadHistory() {
const rows = Array.isArray(response.history) ? response.history : [];
if (!rows.length) {
statusEl.textContent = "No captured S3 URLs yet.";
statusEl.textContent = "No captured samples yet.";
return;
}