style: normalize struct field alignment (#5)
All checks were successful
CI / Build and Test (push) Successful in 36s

This commit was merged in pull request #5.
This commit is contained in:
2026-02-20 19:31:32 +00:00
parent dc56261b58
commit 6064ddd856
8 changed files with 29 additions and 30 deletions

View File

@@ -134,9 +134,9 @@ func TestAction(t *testing.T) {
func TestEventTypes(t *testing.T) {
tests := []struct {
name string
attr string
buildEl func(trigger *actionTrigger) h.H
name string
attr string
buildEl func(trigger *actionTrigger) h.H
}{
{"OnSubmit", "data-on:submit", func(tr *actionTrigger) h.H { return h.Form(tr.OnSubmit()) }},
{"OnInput", "data-on:input", func(tr *actionTrigger) h.H { return h.Input(tr.OnInput()) }},