diff options
Diffstat (limited to 'animism-align/frontend/app/views/align/components/annotations/annotationForms')
| -rw-r--r-- | animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js index 7bbe952..0199b46 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js @@ -56,12 +56,14 @@ export const AnnotationFormVideo = ({ annotation, media, handleSettingsSelect, h onChange={handleSettingsSelect} /> )} - <Checkbox - label="Hide inline video poster" - name="hide_poster_inline22" - checked={annotation.settings.hide_poster_inline} - onChange={handleSettingsSelect} - /> + {(annotation.settings.fullscreen && !annotation.settings.inline) && ( + <Checkbox + label="Hide inline video poster" + name="hide_poster_inline" + checked={annotation.settings.hide_poster_inline} + onChange={handleSettingsSelect} + /> + )} <Checkbox label="Hide in transcript" name="hide_in_transcript" |
