Skip to content

Commit

Permalink
bug fix - add missing <tr> in show HTML see #91
Browse files Browse the repository at this point in the history
  • Loading branch information
sl-solution committed Oct 3, 2022
1 parent 843d12a commit 50da7db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/abstractdataset/io.jl
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ function _show(io::IO, ::MIME"text/html", ds::Union{AbstractDataset, GroupBy, Ga
write(io, "<th>$(html_escape(String(column_name)))</th>")
end
write(io, "</tr>")
write(io, "<tr>")
write(io, "<th></th>")
for column_name in cnames
write(io, "<th>$(getformat(ds, column_name))</th>")
Expand Down

0 comments on commit 50da7db

Please sign in to comment.