diff --git a/templates/components/accordion.html.tmpl b/templates/components/accordion.html.tmpl
index 04c7e03..f1c63ba 100644
--- a/templates/components/accordion.html.tmpl
+++ b/templates/components/accordion.html.tmpl
@@ -5,7 +5,9 @@
{{/* Props: */}}
{{/*
Open: bool
+ Name: name attribute
GroupName: for doing 'open' css state styles
+ Smooth: bool, for 'smooth' opening animation, true by default
Class, Style,
SummaryClass, SummaryStyle
@@ -18,9 +20,11 @@
{{- if .GroupName }}
{{- $groupSuffix = printf "/%s" .GroupName }}
{{- end }}
+{{- $smooth := ne .Smooth false }}
{{ component "accordion"
+ "Name" "sync-group-page"
"Open" true
"Class" `
mx-[1em]
@@ -128,8 +129,10 @@
"
>
{{ component "accordion"
+ "Name" "sync-group-page"
"GroupName" "sync-group"
"Group" $grp
+ "Smooth" false
"#accordion-header" "sync-group-accordion-header"
"#accordion-body" "sync-group-accordion-body"
}}