提交 7b5a29fc 编写于 作者: B Brian Brazil

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.
上级 1d6d39a9
...@@ -24,6 +24,7 @@ import ( ...@@ -24,6 +24,7 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"sort" "sort"
"strings"
"sync" "sync"
"time" "time"
...@@ -244,7 +245,7 @@ func (h *Handler) consoles(w http.ResponseWriter, r *http.Request) { ...@@ -244,7 +245,7 @@ func (h *Handler) consoles(w http.ResponseWriter, r *http.Request) {
}{ }{
RawParams: rawParams, RawParams: rawParams,
Params: params, Params: params,
Path: name, Path: strings.TrimLeft(name, "/"),
} }
tmpl := template.NewTemplateExpander(string(text), "__console_"+name, data, clientmodel.Now(), h.queryEngine, h.options.ExternalURL.Path) tmpl := template.NewTemplateExpander(string(text), "__console_"+name, data, clientmodel.Now(), h.queryEngine, h.options.ExternalURL.Path)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册