diff --git a/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js b/frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
index f0b329d370adf6b29385f67650ab0d48846a6d23..37de51895468fe6992f1f9cd35c4c32d98893bbc 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();