From b6f810cd1a53a4d86dda292a9c201f672f98b85d Mon Sep 17 00:00:00 2001 From: Costantino Perciante Date: Mon, 18 Jul 2016 08:40:58 +0000 Subject: [PATCH] Vre name is no longer cut since with liferay 6.2 we have more space to show it git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/user-statistics@130450 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../user/userstatisticsportlet/client/StatisticsPanel.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/org/gcube/portlet/user/userstatisticsportlet/client/StatisticsPanel.java b/src/main/java/org/gcube/portlet/user/userstatisticsportlet/client/StatisticsPanel.java index 184dee5..4b353dc 100644 --- a/src/main/java/org/gcube/portlet/user/userstatisticsportlet/client/StatisticsPanel.java +++ b/src/main/java/org/gcube/portlet/user/userstatisticsportlet/client/StatisticsPanel.java @@ -200,9 +200,6 @@ public class StatisticsPanel extends Composite { mainPanel.addStyleName("user-stats-frame-border"); String nameToShow = DISPLAY_NAME + " in " + information.getActualVre(); - // cut it if it's too long - nameToShow = nameToShow.length() > 30 ? - nameToShow.substring(0, 27) + "..." : nameToShow; final HTML name = new HTML(nameToShow); name.setTitle(DISPLAY_NAME + " in " + information.getActualVre()); name.setStyleName("user-stats-title");