Skip to content

Commit

Permalink
change markdown argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewelamb committed Oct 9, 2020
1 parent e4b4d89 commit d7c2002
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/barplot_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
barplot_ui <- function(
id,
title = "",
barchart_html = htmltools::includeMarkdown(get_markdown_path("barchart1")),
barplot_html = htmltools::includeMarkdown(get_markdown_path("barchart1")),
...
){

Expand All @@ -20,7 +20,7 @@ barplot_ui <- function(
titleBox(title),
messageBox(
width = 12,
barchart_html
barplot_html
),
shiny::conditionalPanel(
condition = "output.display_feature_class_selection_ui",
Expand Down
4 changes: 2 additions & 2 deletions R/drilldown_scatterplot_ui.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

drilldown_scatterplot_ui <- function(
id,
html = htmltools::includeMarkdown(
drilldown_html = htmltools::includeMarkdown(
get_markdown_path("drilldown_scatterplot1")
)
){
Expand All @@ -12,7 +12,7 @@ drilldown_scatterplot_ui <- function(
shiny::fluidRow(
messageBox(
width = 12,
html
drilldown_html
)
),
shiny::conditionalPanel(
Expand Down

0 comments on commit d7c2002

Please sign in to comment.