Skip to content
Snippets Groups Projects
Commit 50d9a505 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

annotator list title name contains "Source " prefix

parent 0ee5cbb3
No related branches found
No related tags found
1 merge request!280Resolve "source of annotation"
Pipeline #
......@@ -180,9 +180,9 @@ function createGroupContainer(inline, annotatorClass, annotatorsClassMapping, gr
if (groupAnnotations) {
var annotatorName = automaticallyAnnotated ? annotatorsClassMapping[annotatorClass].getName() : "Annotated by curator";
if (inline) {
descContainer.innerHTML = annotatorName + ': ';
descContainer.innerHTML = 'Source: ' + annotatorName + ': ';
} else {
descContainer.innerHTML = annotatorName;
descContainer.innerHTML = 'Source: ' + annotatorName;
if (automaticallyAnnotated) {
var annotatorDescription = annotatorsClassMapping[annotatorClass].getDescription();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment