From 8f1ddfc94035bad830f3165b9d80a1547842ea29 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Wed, 6 Apr 2022 09:01:51 -0500 Subject: [PATCH] Fix html_div not splatting its passed arguments Fixes: 58244fcb5dc1 ("Convert array checking to argument splatting") Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- src/Kelpie.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kelpie.jl b/src/Kelpie.jl index 79aa891..b8bbb2a 100644 --- a/src/Kelpie.jl +++ b/src/Kelpie.jl @@ -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