Fix JS/CSS asset paths for classic /config page (#9202)
Fixes https://github.com/prometheus/prometheus/issues/9130 Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
9c43ac451c
commit
bb05485c79
|
@ -1,6 +1,6 @@
|
|||
{{define "head"}}
|
||||
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/config.css?v={{ buildVersion }}">
|
||||
<script src="{{ pathPrefix }}/static/js/config.js?v={{ buildVersion }}"></script>
|
||||
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/classic/static/css/config.css?v={{ buildVersion }}">
|
||||
<script src="{{ pathPrefix }}/classic/static/js/config.js?v={{ buildVersion }}"></script>
|
||||
{{end}}
|
||||
|
||||
{{define "content"}}
|
||||
|
|
Loading…
Reference in New Issue