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 28ce726 commit 3ba0088Copy full SHA for 3ba0088
R/utils.R
@@ -405,7 +405,11 @@ set_chunk_attrs <- function(teal_card,
405
return(teal_card)
406
}
407
408
- if (length(inner_classes) > 0 && !checkmate::test_multi_class(teal_card[[current_ix]][[1]], inner_classes)) {
+ if (
409
+ length(inner_classes) > 0 &&
410
+ length(teal_card[[current_ix]]) >= 1 &&
411
+ !checkmate::test_multi_class(teal_card[[current_ix]][[1]], inner_classes)
412
+ ) {
413
next
414
415
0 commit comments