diff --git a/pkg/api/index.go b/pkg/api/index.go index 75e3594d854..568b04f95ae 100644 --- a/pkg/api/index.go +++ b/pkg/api/index.go @@ -125,7 +125,7 @@ func setIndexViewData(c *m.ReqContext) (*dtos.IndexViewData, error) { Icon: "fa fa-rocket", Url: setting.AppSubUrl + "/explore", Children: []*dtos.NavLink{ - {Text: "New tab", Icon: "gicon gicon-dashboard-new", Url: setting.AppSubUrl + "/explore/new"}, + {Text: "New tab", Icon: "gicon gicon-dashboard-new", Url: setting.AppSubUrl + "/explore"}, }, }) } diff --git a/pkg/setting/setting.go b/pkg/setting/setting.go index 37646979095..756417c082d 100644 --- a/pkg/setting/setting.go +++ b/pkg/setting/setting.go @@ -613,7 +613,7 @@ func NewConfigContext(args *CommandLineArgs) error { ExecuteAlerts = alerting.Key("execute_alerts").MustBool(true) explore := Cfg.Section("explore") - ExploreEnabled = explore.Key("enabled").MustBool(true) + ExploreEnabled = explore.Key("enabled").MustBool(false) readSessionConfig() readSmtpSettings()