Skip to content

Commit f9a668e

Browse files
committed
🐛 [HTML] We used the num of rows instead columns
1 parent 271eb87 commit f9a668e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backends/html/html_backend.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function _html__print(
4747
for k in eachindex(column_label_titles)
4848
if (
4949
!isnothing(column_label_titles[k]) &&
50-
(length(column_label_titles[k]) != table_data.num_rows)
50+
(length(column_label_titles[k]) != table_data.num_columns)
5151
)
5252
error("The number of elements in each row of `column_label_titles` must match the number of columns in the table.")
5353
end

0 commit comments

Comments
 (0)