Skip to content

Commit

Permalink
Fix default checkbox value
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Feb 20, 2017
1 parent c40d680 commit e5718bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/recorder/app.R
Expand Up @@ -181,7 +181,7 @@ shinyApp(
textInput("testname", label = "Name of tests",
value = if (load_mode) "myloadtest" else "mytests"),
checkboxInput("editSaveFile", "Open script in editor on exit", value = TRUE),
if (!load_mode) checkboxInput("runScript", "Run test script on exit")
if (!load_mode) checkboxInput("runScript", "Run test script on exit", value = TRUE)
),
div(class = "recorded-events-header", "Recorded events"),
div(id = "recorded-events",
Expand Down

0 comments on commit e5718bb

Please sign in to comment.