Committed by
Gerrit Code Review
Changing default view of the new GUI to the Topology View.
Change-Id: I99366a65bbdb91c221e70c6a0f3614c6ee319878
Showing
2 changed files
with
4 additions
and
4 deletions
... | @@ -56,9 +56,9 @@ public class UiExtensionManager implements UiExtensionService { | ... | @@ -56,9 +56,9 @@ public class UiExtensionManager implements UiExtensionService { |
56 | 56 | ||
57 | // Creates core UI extension | 57 | // Creates core UI extension |
58 | private static UiExtension createCoreExtension() { | 58 | private static UiExtension createCoreExtension() { |
59 | - List<UiView> coreViews = of(new UiView("sample", "Sample"), | 59 | + List<UiView> coreViews = of(new UiView("topo", "Topology View"), |
60 | - new UiView("topo", "Topology View"), | 60 | + new UiView("device", "Devices"), |
61 | - new UiView("device", "Devices")); | 61 | + new UiView("sample", "Sample")); |
62 | UiMessageHandlerFactory messageHandlerFactory = | 62 | UiMessageHandlerFactory messageHandlerFactory = |
63 | () -> ImmutableList.of( | 63 | () -> ImmutableList.of( |
64 | new TopologyViewMessageHandler() | 64 | new TopologyViewMessageHandler() | ... | ... |
... | @@ -36,9 +36,9 @@ | ... | @@ -36,9 +36,9 @@ |
36 | // view IDs.. note the first view listed is loaded at startup | 36 | // view IDs.. note the first view listed is loaded at startup |
37 | var viewIds = [ | 37 | var viewIds = [ |
38 | // {INJECTED-VIEW-IDS-START} | 38 | // {INJECTED-VIEW-IDS-START} |
39 | - 'sample', | ||
40 | 'topo', | 39 | 'topo', |
41 | 'device', | 40 | 'device', |
41 | + 'sample', | ||
42 | // {INJECTED-VIEW-IDS-END} | 42 | // {INJECTED-VIEW-IDS-END} |
43 | 43 | ||
44 | // dummy entry | 44 | // dummy entry | ... | ... |
-
Please register or login to post a comment