mirror of
https://github.com/prometheus/prometheus
synced 2025-01-24 08:24:03 +00:00
web: Fix regression in .Path
.Path is documented as removing /consoles/, recent changes added in a leading / which broke the provided console templates menu system.
This commit is contained in:
parent
1d6d39a9ed
commit
7b5a29fc8f
@ -24,6 +24,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
@ -244,7 +245,7 @@ func (h *Handler) consoles(w http.ResponseWriter, r *http.Request) {
|
||||
}{
|
||||
RawParams: rawParams,
|
||||
Params: params,
|
||||
Path: name,
|
||||
Path: strings.TrimLeft(name, "/"),
|
||||
}
|
||||
|
||||
tmpl := template.NewTemplateExpander(string(text), "__console_"+name, data, clientmodel.Now(), h.queryEngine, h.options.ExternalURL.Path)
|
||||
|
Loading…
Reference in New Issue
Block a user