Skip to content

Commit

Permalink
Add proper keys for phenogrid rows and columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Golden authored and ptgolden committed Jan 21, 2025
1 parent 97a158b commit 3799a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/ThePhenogrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
>
<tooltip
v-for="(col, colIndex) in cols"
:key="colIndex"
:key="col.id"
:interactive="true"
placement="bottom"
follow-cursor="initial"
Expand Down Expand Up @@ -103,7 +103,7 @@
>
<tooltip
v-for="(row, rowIndex) in rows"
:key="rowIndex"
:key="row.id"
:interactive="true"
placement="bottom"
follow-cursor="initial"
Expand Down

0 comments on commit 3799a51

Please sign in to comment.