Merge pull request #1694 from weaveworks/1689-hide-uncontained-by-default

hide uncontained/unmanaged by default

Fixes #1689.
This commit is contained in:
Matthias Radestock
2016-07-18 09:57:31 +01:00
committed by GitHub

View File

@@ -23,7 +23,7 @@ var (
}
k8sPseudoFilter = APITopologyOptionGroup{
ID: "pseudo",
Default: "show",
Default: "hide",
Options: []APITopologyOption{
{"show", "Show Unmanaged", nil, false},
{"hide", "Hide Unmanaged", render.IsNotPseudo, true},
@@ -53,7 +53,7 @@ func init() {
},
{
ID: "pseudo",
Default: "show",
Default: "hide",
Options: []APITopologyOption{
{"show", "Show Uncontained", nil, false},
{"hide", "Hide Uncontained", render.IsNotPseudo, true},