Skip to content

Commit

Permalink
fixed update error
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefterv committed Jan 15, 2021
1 parent a0a7c64 commit 4fd1a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/preview/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<h4>Preview</h4>
<svg v-if="preview" :viewBox="preview.viewBox">
<line
v-for="motion in preview.motions"
:key="motion.id"
v-for="(motion, index) in preview.motions"
:key="index"
:class="{
drawn: state.motionIdx > motion.id,
current: state.motionIdx == motion.id,
Expand Down

0 comments on commit 4fd1a69

Please sign in to comment.