ref 12594: Provide DM Users with runtime execution information

https://support.d4science.org/issues/12594

Added service info[ticket #12594]
Updated the resources check on IS [ticket #17569]

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/data-miner-manager@181927 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2019-10-03 09:26:37 +00:00
parent 2b7b6fe969
commit dc750e4e71
1 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ public class WorkflowPanel extends TabPanel {
private ComputationExecutionPanel computationExecutionPanel;
private ComputationPanel computationPanel;
private ServiceInfoPanel environmentPanel;
private ServiceInfoPanel serviceInfoPanel;
/**
*
@ -71,12 +71,12 @@ public class WorkflowPanel extends TabPanel {
computationExecutionPanel = new ComputationExecutionPanel();
add(computationExecutionPanel, tabComputationPanelItemConf);
TabItemConfig tabEnvironmentPanelItemConf = new TabItemConfig(
TabItemConfig tabServiceInfoPanelItemConf = new TabItemConfig(
SERVICE_INFO, false);
tabEnvironmentPanelItemConf.setIcon(DataMinerManager.resources
tabServiceInfoPanelItemConf.setIcon(DataMinerManager.resources
.folderExplore());
environmentPanel = new ServiceInfoPanel();
add(environmentPanel, tabEnvironmentPanelItemConf);
serviceInfoPanel = new ServiceInfoPanel();
add(serviceInfoPanel, tabServiceInfoPanelItemConf);
setActiveWidget(computationPanel);
}