🩹 Fix loop

This commit is contained in:
Brian Wiborg 2024-05-13 12:52:06 +02:00
parent f2f8265499
commit 944ab85aea
No known key found for this signature in database
GPG Key ID: BE53FA9286B719D6

View File

@ -126,7 +126,7 @@
</thead> </thead>
<tbody> <tbody>
{{ range $vote := .Voting.Votes }} {{ range $vote := .Voting.Votes }}
<tr class="border-b border-t bg-gray-800 border-gray-700"> <tr class="border-b border-t bg-gray-800 border-gray-700" id="$vote.Id">
<td class="px-2 py-2"> <td class="px-2 py-2">
{{ $vote.Choice }} {{ $vote.Choice }}
</td> </td>
@ -137,9 +137,9 @@
{{ $vote.Id }} {{ $vote.Id }}
</td> </td>
</tr> </tr>
{{ end }}
</tbody> </tbody>
</table> </table>
</div> </div>
{{ end }} {{ end }}
{{ end }}
{{ end }} {{ end }}