pass entity name to find and findannotations, fixes #2626

This commit is contained in:
j 2014-12-23 10:57:01 +00:00
parent 8f9a013236
commit acbb56da65

View file

@ -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';