Skip to content

Commit

Permalink
Merge pull request #1694 from weaveworks/1689-hide-uncontained-by-def…
Browse files Browse the repository at this point in the history
…ault

hide uncontained/unmanaged by default

Fixes #1689.
  • Loading branch information
rade authored Jul 18, 2016
2 parents b38913e + 3202cc7 commit 4a9e09b
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 4a9e09b

Please sign in to comment.