hide uncontained/unmanaged by default

They are of no interest to most users and affect the initial user
experience.

Fixes #1689.
This commit is contained in:
Matthias Radestock
2016-07-17 19:00:18 +01:00
parent b38913e5c9
commit 3202cc7e58

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},