From f6686f48bd35056707155fae9186ffb46b0536d5 Mon Sep 17 00:00:00 2001 From: Birm Date: Tue, 26 Nov 2024 11:11:09 -0500 Subject: [PATCH] replace zip text if set --- apps/labeling/downloadTable.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/labeling/downloadTable.html b/apps/labeling/downloadTable.html index 1593e21a1..5e48ec944 100644 --- a/apps/labeling/downloadTable.html +++ b/apps/labeling/downloadTable.html @@ -367,6 +367,9 @@ if (collectionInfo[0].zip){ let zipButton = document.createElement("button") zipButton.innerText = "Download Whole Collection"; + if (collectionInfo[0].zipText){ + zipButton.innerText = collectionInfo[0].zipText; + } zipButton.classList.add(["btn"]); zipButton.dataset.zipurl = collectionInfo[0].zip; zipButton.onclick = downloadCollection;