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

[LMS-2354] minor: reverted verbose heading in embedded mode

SVN: 22012
parent 6a395199
No related branches found
No related tags found
No related merge requests found
...@@ -113,9 +113,6 @@ public final class Dict extends ch.systemsx.cisd.openbis.generic.client.web.clie ...@@ -113,9 +113,6 @@ public final class Dict extends ch.systemsx.cisd.openbis.generic.client.web.clie
public static final String MATERIAL_IN_ALL_ASSAYS = "MATERIAL_IN_ALL_ASSAYS"; public static final String MATERIAL_IN_ALL_ASSAYS = "MATERIAL_IN_ALL_ASSAYS";
public static final String MATERIAL_IN_ALL_ASSAYS_OF_PROJECT =
"MATERIAL_IN_ALL_ASSAYS_OF_PROJECT";
private Dict() private Dict()
{ {
// Can not be instantiated. // Can not be instantiated.
......
...@@ -18,7 +18,6 @@ package ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application. ...@@ -18,7 +18,6 @@ package ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.
import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext; import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.grid.IDisposableComponent; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.grid.IDisposableComponent;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.BasicProjectIdentifier;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Material; import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Material;
import ch.systemsx.cisd.openbis.plugin.screening.client.web.client.IScreeningClientServiceAsync; import ch.systemsx.cisd.openbis.plugin.screening.client.web.client.IScreeningClientServiceAsync;
import ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.Dict; import ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.Dict;
...@@ -66,18 +65,8 @@ public class MaterialFeaturesFromAllExperimentsComponent ...@@ -66,18 +65,8 @@ public class MaterialFeaturesFromAllExperimentsComponent
{ {
if (screeningViewContext.getModel().isEmbeddedMode()) if (screeningViewContext.getModel().isEmbeddedMode())
{ {
BasicProjectIdentifier projectIdentifierOrNull = return screeningViewContext.getMessage(Dict.MATERIAL_IN_ALL_ASSAYS,
experimentSearchCriteria.tryGetProjectIdentifier(); MaterialComponentUtils.getMaterialFullName(material, true));
if (projectIdentifierOrNull != null)
{
return screeningViewContext.getMessage(Dict.MATERIAL_IN_ALL_ASSAYS_OF_PROJECT,
MaterialComponentUtils.getMaterialFullName(material, true),
projectIdentifierOrNull);
} else
{
return screeningViewContext.getMessage(Dict.MATERIAL_IN_ALL_ASSAYS,
MaterialComponentUtils.getMaterialFullName(material, true));
}
} else } else
{ {
// header is not needed in SIMPLE & NORMAL view mode because there the context is clear // header is not needed in SIMPLE & NORMAL view mode because there the context is clear
......
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