From 0b3e480c179d26fd9477b606c7b8d3f95730601b Mon Sep 17 00:00:00 2001 From: vedhav Date: Wed, 6 Nov 2024 18:42:34 +0530 Subject: [PATCH] chore: move the values in the same line --- R/modules.R | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/R/modules.R b/R/modules.R index e20dc27779..43df2f9259 100644 --- a/R/modules.R +++ b/R/modules.R @@ -360,21 +360,21 @@ format.teal_module <- function( if ("data" %in% what) { output <- paste0( output, - content_prefix, "├─ ", crayon::yellow("Datasets:"), " ", paste(x$datanames, collapse = ", "), "\n" + content_prefix, "├─ ", crayon::yellow("Datasets:"), " ", paste(x$datanames, collapse = ", "), "\n" ) } if ("properties" %in% what) { output <- paste0( output, content_prefix, "├─ ", crayon::blue("Properties:"), "\n", - content_prefix, "│ ├─ ", crayon::cyan("Bookmarkable: "), bookmarkable, "\n", - content_prefix, "│ └─ ", crayon::cyan("Reportable: "), reportable, "\n" + content_prefix, "│ ├─ ", crayon::cyan("Bookmarkable: "), bookmarkable, "\n", + content_prefix, "│ └─ ", crayon::cyan("Reportable: "), reportable, "\n" ) } if ("ui_args" %in% what) { output <- paste0( output, - content_prefix, "├─ ", crayon::green("UI Arguments:"), " ", format_list(x$ui_args), "\n" + content_prefix, "├─ ", crayon::green("UI Arguments: "), " ", format_list(x$ui_args), "\n" ) } if ("server_args" %in% what) { @@ -386,7 +386,7 @@ format.teal_module <- function( if ("transformers" %in% what) { output <- paste0( output, - content_prefix, "└─ ", crayon::magenta("Transformers:"), " ", transformers, "\n" + content_prefix, "└─ ", crayon::magenta("Transformers: "), " ", transformers, "\n" ) }