Skip to content
Snippets Groups Projects
Commit 98ccca98 authored by buczekp's avatar buczekp
Browse files

[LMS-1676] fixed dependencies

SVN: 17375
parent b076d103
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ import com.extjs.gxt.ui.client.widget.grid.Grid;
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.model.BaseEntityModel;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.widget.MultilineHTML;
public class InternalLinkCellRenderer implements GridCellRenderer<BaseEntityModel<?>>
{
......@@ -34,7 +35,7 @@ public class InternalLinkCellRenderer implements GridCellRenderer<BaseEntityMode
String tokenOrNull = model.tryGetLink(property);
if (tokenOrNull == null && renderOriginalValueForEmptyToken)
{
return originalValue;
return new MultilineHTML(originalValue).toString();
} else
{
String href = "#" + (tokenOrNull != null ? tokenOrNull : "");
......
......@@ -16,7 +16,6 @@
package ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.columns.specific.sample;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.widget.MultilineHTML;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Sample;
public class ParentGeneratedFromSampleColDef extends AbstractParentSampleColDef
......@@ -77,7 +76,7 @@ public class ParentGeneratedFromSampleColDef extends AbstractParentSampleColDef
sb.append(getAsValue(parent)).append("\n");
counter++;
}
return new MultilineHTML(sb.toString()).toString();
return sb.toString();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment