Skip to content

Commit

Permalink
refresh data, upper limit on series
Browse files Browse the repository at this point in the history
  • Loading branch information
MattCowgill committed Nov 26, 2020
1 parent da4bdb1 commit 1edf959
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Imports:
shinythemes,
markdown,
purrr,
shinyWidgets
shinyWidgets,
readr
Suggests:
testthat
Binary file modified R/sysdata.rda
Binary file not shown.
5 changes: 3 additions & 2 deletions R/wilma_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ wilma <- function(...) {
multiple = TRUE,
selected = as.character(default_series()),
width = "100%",
options = list(maxOptions = 10000)
options = list(maxOptions = 10000,
maxItems = 10)
)
})

Expand Down Expand Up @@ -110,7 +111,7 @@ wilma <- function(...) {
"wilma_data.csv"
},
content = function(file) {
utils::write.csv(chart_data(), file = file)
readr::write_csv(chart_data(), file = file)
}
)

Expand Down

0 comments on commit 1edf959

Please sign in to comment.