IDEA-164756 - Docker - old log tabs remains after re-creating container

- separate unique vs sticky / presentable name for AgentApplication's
This commit is contained in:
Michael Golubev
2018-05-21 00:23:30 +02:00
parent 2ea2a5e524
commit 0a6f1749ae

View File

@@ -134,7 +134,7 @@ public abstract class CloudSourceApplicationConfigurable<
JComboBox existingComboBox = getExistingComboBox();
existingComboBox.removeAllItems();
for (Deployment deployment : deployments) {
existingComboBox.addItem(deployment.getName());
existingComboBox.addItem(deployment.getPresentableName());
}
}