Skip to content

Commit 50da7db

Browse files
committed
bug fix - add missing <tr> in show HTML see #91
1 parent 843d12a commit 50da7db

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/abstractdataset/io.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ function _show(io::IO, ::MIME"text/html", ds::Union{AbstractDataset, GroupBy, Ga
220220
write(io, "<th>$(html_escape(String(column_name)))</th>")
221221
end
222222
write(io, "</tr>")
223+
write(io, "<tr>")
223224
write(io, "<th></th>")
224225
for column_name in cnames
225226
write(io, "<th>$(getformat(ds, column_name))</th>")

0 commit comments

Comments
 (0)