79466871

Date: 2025-02-25 14:28:55
Score: 0.5
Natty:
Report link
    # Define the downloadUI function
downloadUI <- function(id, download_text = "Download") {
    div(id = id,
        downloadButton(id, label = download_text, icon = icon("download")),
        bsTooltip(id, "Click to download the report as a ZIP file",trigger = "hover")
    )
}

Just needed to swap the bsButton with downloadButton

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: sutsabs