Changing default view of the new GUI to the Topology View.

Change-Id: I99366a65bbdb91c221e70c6a0f3614c6ee319878
This commit is contained in:
Thomas Vachuska 2015-03-17 15:19:03 -07:00 committed by Gerrit Code Review
parent b0a3dd6136
commit ef646764d5
2 changed files with 4 additions and 4 deletions

View File

@ -56,9 +56,9 @@ public class UiExtensionManager implements UiExtensionService {
// Creates core UI extension // Creates core UI extension
private static UiExtension createCoreExtension() { private static UiExtension createCoreExtension() {
List<UiView> coreViews = of(new UiView("sample", "Sample"), List<UiView> coreViews = of(new UiView("topo", "Topology View"),
new UiView("topo", "Topology View"), new UiView("device", "Devices"),
new UiView("device", "Devices")); new UiView("sample", "Sample"));
UiMessageHandlerFactory messageHandlerFactory = UiMessageHandlerFactory messageHandlerFactory =
() -> ImmutableList.of( () -> ImmutableList.of(
new TopologyViewMessageHandler() new TopologyViewMessageHandler()

View File

@ -36,9 +36,9 @@
// view IDs.. note the first view listed is loaded at startup // view IDs.. note the first view listed is loaded at startup
var viewIds = [ var viewIds = [
// {INJECTED-VIEW-IDS-START} // {INJECTED-VIEW-IDS-START}
'sample',
'topo', 'topo',
'device', 'device',
'sample',
// {INJECTED-VIEW-IDS-END} // {INJECTED-VIEW-IDS-END}
// dummy entry // dummy entry