Skip to content

Commit

Permalink
fix track by for trait trees
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Aug 30, 2024
1 parent dcbe9f4 commit 50525f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

@for(row of tree; track $index) {
<div class="flex flex-row">
@for(col of tree[$index].traits; track $index + col.name) {
@for(col of tree[$index].traits; track $index + ' ' + col.name) {
<div class="flex-1">
<div class="flex flex-col p-4">
<div class="flex items-center justify-center">
Expand Down

0 comments on commit 50525f9

Please sign in to comment.