Skip to content

Commit

Permalink
fixing cmd checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeyakirar committed Oct 5, 2023
1 parent 9461dfc commit f7659d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/tm_outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ srv_outliers <- function(id, data, reporter, filter_panel_api, outlier_var,

### REPORTER
if (with_reporter) {
card_fun <- function(comment) {
card_fun <- function(comment, label) {
tab_type <- input$tabs
card <- card_template(
title = paste0("Outliers - ", tab_type),
Expand Down
2 changes: 1 addition & 1 deletion R/tm_t_crosstable.R
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ srv_t_crosstable <- function(id, data, reporter, filter_panel_api, label, x, y,

### REPORTER
if (with_reporter) {
card_fun <- function(comment) {
card_fun <- function(comment, label) {
card <- card_template(
title = "Cross Table",
label = label,
Expand Down
2 changes: 1 addition & 1 deletion R/tm_variable_browser.R
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ srv_variable_browser <- function(id,

### REPORTER
if (with_reporter) {
card_fun <- function(comment) {
card_fun <- function(comment, label) {
card <- card_template(
title = "Variable Browser Plot",
label = label,
Expand Down

0 comments on commit f7659d7

Please sign in to comment.