1
0
Fork 0
mirror of https://github.com/MillironX/Kelpie.jl.git synced 2024-11-14 05:33:09 +00:00

Fix html_div not splatting its passed arguments

Fixes: 58244fcb5d ("Convert array checking to argument splatting")
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
Thomas A. Christensen II 2022-04-06 09:01:51 -05:00
parent 8fd2e7c802
commit 8f1ddfc940
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -161,7 +161,7 @@ for symbol in HTML_ELEMENTS
end
function html_div(content...=nothing; kwargs...)
return html_element("div", content; kwargs...)
return html_element("div", content...; kwargs...)
end #function
end #module