From 3202cc7e58a3e6dc2622309a73d6ced7b6e5d890 Mon Sep 17 00:00:00 2001 From: Matthias Radestock Date: Sun, 17 Jul 2016 19:00:18 +0100 Subject: [PATCH] hide uncontained/unmanaged by default They are of no interest to most users and affect the initial user experience. Fixes #1689. --- app/api_topologies.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api_topologies.go b/app/api_topologies.go index 613747cb47..a20a13605e 100644 --- a/app/api_topologies.go +++ b/app/api_topologies.go @@ -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},