We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 526495e commit f6686f4Copy full SHA for f6686f4
apps/labeling/downloadTable.html
@@ -367,6 +367,9 @@
367
if (collectionInfo[0].zip){
368
let zipButton = document.createElement("button")
369
zipButton.innerText = "Download Whole Collection";
370
+ if (collectionInfo[0].zipText){
371
+ zipButton.innerText = collectionInfo[0].zipText;
372
+ }
373
zipButton.classList.add(["btn"]);
374
zipButton.dataset.zipurl = collectionInfo[0].zip;
375
zipButton.onclick = downloadCollection;
0 commit comments