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 260668f commit bcb3adcCopy full SHA for bcb3adc
R/utils.R
@@ -133,7 +133,11 @@ set_chunk_attrs <- function(teal_card,
133
return(teal_card)
134
}
135
136
- if (length(inner_classes) > 0 && !checkmate::test_multi_class(teal_card[[current_ix]][[1]], inner_classes)) {
+ if (
137
+ length(inner_classes) > 0 &&
138
+ length(teal_card[[current_ix]]) >= 1 &&
139
+ !checkmate::test_multi_class(teal_card[[current_ix]][[1]], inner_classes)
140
+ ) {
141
next
142
143
0 commit comments