Skip to content

Commit

Permalink
Don't write extra title line to excel export spreadsheets
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Sep 10, 2024
1 parent db01cb4 commit b3fb2d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pvactools/tools/pvacview/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,8 @@ server <- shinyServer(function(input, output, session) {
extension = ".tsv"),
list(extend = "excel",
filename = input$exportFileName,
text = "Download as excel")
text = "Download as excel",
title = NULL)
),
initComplete = htmlwidgets::JS(
"function(settings, json) {",
Expand Down Expand Up @@ -2125,7 +2126,8 @@ server <- shinyServer(function(input, output, session) {
extension = ".tsv"),
list(extend = "excel",
filename = input$exportNeofoxFileName,
text = "Download as excel")
text = "Download as excel",
title = NULL)
),
initComplete = htmlwidgets::JS(
"function(settings, json) {",
Expand Down

0 comments on commit b3fb2d5

Please sign in to comment.