We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c43acd8 commit 82a60dcCopy full SHA for 82a60dc
inst/app/modules/info/mod_info_ui.R
@@ -25,7 +25,11 @@ mod_info_server <- function(id) {
25
ns <- session$ns
26
27
output$version_text <- renderText({
28
- paste("bcts version:", as.character(utils::packageVersion("bcts")))
+ paste(
29
+ "bcts version:", as.character(utils::packageVersion("bcts")),
30
+ "\nR version:", R.version.string,
31
+ "\nPlatform:", R.version$platform
32
+ )
33
})
34
35
}
0 commit comments