mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
vmalert: remove extra /
from path in WEB interface (#1717)
The extra `/` may cause issues when additional path prefixes are configured. Also, removing it makes it consistent with the rest of declarations. Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
478854d36d
commit
146a5b504c
@ -32,9 +32,9 @@ func initLinks() {
|
|||||||
{path.Join(pathPrefix, "-/reload"), "reload configuration"},
|
{path.Join(pathPrefix, "-/reload"), "reload configuration"},
|
||||||
}
|
}
|
||||||
navItems = []tpl.NavItem{
|
navItems = []tpl.NavItem{
|
||||||
{Name: "vmalert", Url: path.Join(pathPrefix, "/")},
|
{Name: "vmalert", Url: pathPrefix},
|
||||||
{Name: "Groups", Url: path.Join(pathPrefix, "groups")},
|
{Name: "Groups", Url: path.Join(pathPrefix, "groups")},
|
||||||
{Name: "Alerts", Url: path.Join(pathPrefix, "/alerts")},
|
{Name: "Alerts", Url: path.Join(pathPrefix, "alerts")},
|
||||||
{Name: "Docs", Url: "https://docs.victoriametrics.com/vmalert.html"},
|
{Name: "Docs", Url: "https://docs.victoriametrics.com/vmalert.html"},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user