Skip to content

Commit

Permalink
hide uncontained/unmanaged by default
Browse files Browse the repository at this point in the history
They are of no interest to most users and affect the initial user
experience.

Fixes #1689.
  • Loading branch information
rade committed Jul 17, 2016
1 parent b38913e commit 3202cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/api_topologies.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down Expand Up @@ -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},
Expand Down

0 comments on commit 3202cc7

Please sign in to comment.