This is an automated email from the ASF dual-hosted git repository.
gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git
The following commit(s) were added to refs/heads/trunk by this push:
new 07aba77 fix interpolation
07aba77 is described below
commit 07aba7747ba45e57fbac62351e0157accf183b39
Author: Greg Stein <[email protected]>
AuthorDate: Thu Oct 9 00:06:49 2025 -0500
fix interpolation
---
v3/server/templates/vote-on.ezt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v3/server/templates/vote-on.ezt b/v3/server/templates/vote-on.ezt
index fa6969a..4a6dcc3 100644
--- a/v3/server/templates/vote-on.ezt
+++ b/v3/server/templates/vote-on.ezt
@@ -60,7 +60,7 @@
<script>
// Toggle individual description
function toggleDescription(issueId) {
- const desc = document.getElementById('description-${issueId}');
+ const desc = document.getElementById(`description-${issueId}`);
const twiddle = desc.previousElementSibling.querySelector('.twiddle');
desc.classList.toggle('show');
twiddle.classList.toggle('bi-caret-right-fill');