Hide download button for Webcal collections

This commit is contained in:
MatthewHana 2024-03-11 17:13:37 +11:00
parent bf824838d8
commit 6f5ee56c2d

View file

@ -742,6 +742,9 @@ function CollectionsScene(user, password, collection, onerror) {
let href = SERVER + collection.href;
url_form.value = href;
download_btn.href = href;
if(collection.type == CollectionType.WEBCAL){
download_btn.parentElement.classList.add("hidden");
}
delete_btn.onclick = function() {return ondelete(collection);};
edit_btn.onclick = function() {return onedit(collection);};
node.classList.remove("hidden");