diff --git a/source/UI/js/Video/AnnotationPanel.js b/source/UI/js/Video/AnnotationPanel.js index 57c2d7ac..08305d6d 100644 --- a/source/UI/js/Video/AnnotationPanel.js +++ b/source/UI/js/Video/AnnotationPanel.js @@ -224,7 +224,7 @@ Ox.AnnotationPanel = function(options, self) { if (annotation && folder) { key = folder.options('id'); type = folder.options('type'); - value = annotation.value; + value = annotation.entity ? annotation.entity.name : annotation.value; isEditable = annotation.editable; isEvent = type == 'event'; isPlace = type == 'place';