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:
parent
8fd2e7c802
commit
8f1ddfc940
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue