Skip to content

Commit

Permalink
fix WARN: do not use v-for index as key in SectionEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
nucleogenesis committed Dec 21, 2023
1 parent e2caa8e commit efb974a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
>
<transition-group>
<Draggable
v-for="(section,index) in sectionOrderList"
:key="index"
v-for="(section) in sectionOrderList"
:key="section.section_id"
:style="draggableStyle"
>
<DragHandle>
Expand Down

0 comments on commit efb974a

Please sign in to comment.