소스 검색

Removing space in participantLabel for study id only participants

Andrej Studen 1 년 전
부모
커밋
ef6d089b66
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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;