diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-08-24 14:46:52 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-08-24 14:46:52 +0200 |
| commit | 9f57a7f41ac4a8d2526f2b169193010eb76023a2 (patch) | |
| tree | 256a0d1e6335486bc31822779ab3e16f536c4f59 /animism-align/frontend/app/views/align/components/annotations | |
| parent | 270c9d6ddf4c7e1a59e6e955226bfa6bbfe9a781 (diff) | |
adding rest of content
Diffstat (limited to 'animism-align/frontend/app/views/align/components/annotations')
| -rw-r--r-- | animism-align/frontend/app/views/align/components/annotations/annotation.form.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/animism-align/frontend/app/views/align/components/annotations/annotation.form.js b/animism-align/frontend/app/views/align/components/annotations/annotation.form.js index 829d3ae..f20e70a 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotation.form.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotation.form.js @@ -5,7 +5,7 @@ import { connect } from 'react-redux' import actions from 'app/actions' -import { ZOOM_STEPS } from 'app/constants' +import { MEDIA_ANNOTATION_TYPES } from 'app/constants' import { clamp, timestamp, capitalize } from 'app/utils' import { timeToPosition } from 'app/utils/align.utils' import { Select } from 'app/common' @@ -87,6 +87,10 @@ class AnnotationForm extends Component { if (annotation.type === 'paragraph_end') { annotation.text = '' } + if (annotation.type in MEDIA_ANNOTATION_TYPES) { + if (!annotation.settings.media_id) return + annotation.text = '' + } if (annotation.id === 'new') { delete annotation.id actions.annotation.create(annotation) |
