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 d660198 commit f9f5bf9Copy full SHA for f9f5bf9
R/utils.R
@@ -409,7 +409,9 @@ children <- function(x, dataset_name = character(0)) {
409
join_cols <- teal.data::join_keys(plotly_selected_q())[childname, plot_dataname]
410
substitute(
411
expr = {
412
- childname <- dplyr::right_join(childname, swimlane_selected, by = by)
+ if (nrow(childname) > 0) {
413
+ childname <- dplyr::right_join(childname, swimlane_selected, by = by)
414
+ }
415
},
416
list(
417
childname = str2lang(childname),
0 commit comments