Skip to content

Commit 65a2748

Browse files
committed
version 1.5.1
2 parents 9369d84 + b551b80 commit 65a2748

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>1.4.0</version>
99
</parent>
1010
<artifactId>user-db-portlet</artifactId>
11-
<version>1.5.0</version>
11+
<version>1.5.1</version>
1212
<name>User Database Portlet</name>
1313
<url>http://github.com/qbicsoftware/user-db-portlet</url>
1414
<packaging>war</packaging>

src/main/java/life/qbic/portal/portlet/UserDBPortletUI.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private void initTabs() {
218218
Map<String, ProjectInfo> allProjects = dbControl.getProjectMap();
219219
for (Project p : openbisProjects) {
220220
String desc = Objects.toString(p.getDescription(), "");
221-
desc = desc.replace("\n", ";");
221+
desc = desc.replaceAll("\n+", ". ");
222222
String projectID = p.getIdentifier();
223223
String code = p.getCode();
224224
if (allProjects.get(projectID) == null)

src/main/java/life/qbic/userdb/views/ProjectView.java

-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ private String createTSV(String subProject, Person PI, Person contact, Person ma
218218
secondaryName = secondaryName == null ? "" : secondaryName;
219219
String space = proj.getSpace();
220220
String description = proj.getDescription();
221-
System.out.println(description);
222221

223222
List<String> summaryHeader =
224223
new ArrayList<>(Arrays.asList("Sub-Project", "Short Title", "Description", "Project",

0 commit comments

Comments
 (0)