fix(templ): correct @click attribute interpolation syntax

Templ requires Go expression interpolation for dynamic attributes,
not string embedding. Change from @click="func('{ id }')" to
@click={ "func('" + id + "')" } for device ID and registration ID
buttons.
This commit is contained in:
2026-06-02 19:46:29 -04:00
parent bc59159cde
commit 0f225c39b9
2 changed files with 191 additions and 139 deletions
+187 -135
View File
File diff suppressed because one or more lines are too long