Browse Source

Removing space in participantLabel for study id only participants

Andrej Studen 1 year ago
parent
commit
ef6d089b66
1 changed files with 2 additions and 2 deletions
  1. 2 2
      web/crf/crfSetup.js

+ 2 - 2
web/crf/crfSetup.js

@@ -143,8 +143,8 @@ function(entry){
    let pid=entry[this.getStudyIdLabel()];
    let loc=entry[this.getLocalIdLabel()];
    let label='';
-   if (pid) label+=pid+' ';
-   if (loc) label+='(Local: '+loc+')';
+   if (pid) label+=pid;
+   if (loc) label+=' (Local: '+loc+')';
    if (label.length==0) label="NONE";
    return label;