We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7805a1b commit 0989ac2Copy full SHA for 0989ac2
R/tm_g_distribution.R
@@ -1214,15 +1214,15 @@ srv_distribution <- function(id,
1214
# wrapped in if since could lead into validate error - we do want to continue
1215
test_r_qenv_out <- try(test_q(), silent = TRUE)
1216
if (!inherits(test_r_qenv_out, c("try-error", "error"))) {
1217
- qenv_final <- teal.code::join(qenv_final, test_q())
+ qenv_final <- c(qenv_final, test_q())
1218
}
1219
1220
qenv_final <- if (tab == "Histogram") {
1221
req(dist_q())
1222
- teal.code::join(qenv_final, dist_q())
+ c(qenv_final, dist_q())
1223
} else if (tab == "QQplot") {
1224
req(qq_q())
1225
- teal.code::join(qenv_final, qq_q())
+ c(qenv_final, qq_q())
1226
1227
qenv_final
1228
})
0 commit comments