diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-09-09 18:55:59 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-09-09 18:55:59 +0200 |
| commit | af17cb4e5de2d236305c208de9c4bc16efdc04b8 (patch) | |
| tree | 10ffeaa0bb28d8891004a0c10a8325a425cef4b1 /animism-align/frontend/app/views/align/components/annotations/annotation.index.js | |
| parent | 8bc34e487d138573374c4cbe2fe6e892565b9323 (diff) | |
keep track of carousel advance instructions
Diffstat (limited to 'animism-align/frontend/app/views/align/components/annotations/annotation.index.js')
| -rw-r--r-- | animism-align/frontend/app/views/align/components/annotations/annotation.index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/animism-align/frontend/app/views/align/components/annotations/annotation.index.js b/animism-align/frontend/app/views/align/components/annotations/annotation.index.js index 0f9ee30..44b27d7 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotation.index.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotation.index.js @@ -38,7 +38,7 @@ class AnnotationIndex extends PureComponent { const items = order.filter(id => { const { start_ts: ts } = lookup[id] return (timeMin < ts && ts < timeMax) - }).map(id => lookup[id]).reverse() + }).map(id => lookup[id]) this.setState({ items }) } handleClick(e, annotation) { |
