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:
Julius Volz 2021-08-13 18:10:31 +02:00 committed by GitHub
parent 9c43ac451c
commit bb05485c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"}}