From 50d9a505bb6337711a401ecba896e39473508290 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Mon, 9 Apr 2018 12:51:07 +0200
Subject: [PATCH] annotator list title name contains "Source " prefix

---
 frontend-js/src/main/js/gui/leftPanel/GuiUtils.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js b/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
index f0b329d370..37de518954 100644
--- a/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
+++ b/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
@@ -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();
-- 
GitLab