jack 7 years ago
parent
commit
4182cfadf5
1 changed files with 3 additions and 1 deletions
  1. 3 1
      e/r.html

+ 3 - 1
e/r.html

@ -186,7 +186,9 @@ $(document).ready(function() {
186 186
						othisInfo.setAttribute("data-status",mydata.organization.authStatus);
187 187
						othisInfo.setAttribute("data-type",mydata.resourceType);
188 188
						othisName.innerHTML = mydata.organization.name;
189
						othisOther.innerHTML = (mydata.subject).replace(/,/, " | ");
189
						if(mydata.organization.subject){
190
							othisOther.innerHTML = (mydata.organization.subject).replace(/,/, " | ");
191
						}
190 192
						othisPic.classList.add("cmpHead");
191 193
						if(mydata.organization.hasOrgLogo) {
192 194
							othisPic.style.backgroundImage = 'url(../images/org/' + mydata.organization.id + '.jpg)';