Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Limited landing page to two choices
  • Loading branch information
jenzopr committed Sep 5, 2019
1 parent 8d6fddd commit 9016370
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wilson-basic/app.R
Expand Up @@ -24,7 +24,8 @@ wilson_sidepanelwidth <- Sys.getenv("WILSON_SIDEPANELWIDTH", unset = 2)
wilson_mainpanelwidth <- Sys.getenv("WILSON_MAINPANELWIDTH", unset = 10)

# Which page should the user land on - default is the Introdcution page
wilson_landing_page <- Sys.getenv("WILSON_LANDING_PAGE", unset = "introduction")
wilson_landing_page <- match.arg(arg = Sys.getenv("WILSON_LANDING_PAGE", unset = "introduction"),
choices = c("introduction", "feature_selection"))

#
# Server options
Expand Down

0 comments on commit 9016370

Please sign in to comment.