enable explore by default

closes #15037
This commit is contained in:
bergquist
2019-01-28 13:02:54 +01:00
parent 5082b66e3d
commit 6e672eb291
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -718,7 +718,7 @@ func (cfg *Cfg) Load(args *CommandLineArgs) error {
AlertingNoDataOrNullValues = alerting.Key("nodata_or_nullvalues").MustString("no_data")
explore := iniFile.Section("explore")
ExploreEnabled = explore.Key("enabled").MustBool(false)
ExploreEnabled = explore.Key("enabled").MustBool(true)
panels := iniFile.Section("panels")
cfg.EnableAlphaPanels = panels.Key("enable_alpha").MustBool(false)