Add PATH_PREFIX to redirectToMigratedURL

Old grafana versions use this format, and it breaks with prometheus instances
not mounted in the root directory.
pull/2934/head
Martín Ferrari 7 years ago
parent f0f2ec7854
commit 64cfe2e7f5

File diff suppressed because one or more lines are too long

@ -927,7 +927,7 @@ function redirectToMigratedURL() {
});
});
var query = $.param(queryObject);
window.location = "/graph?" + query;
window.location = PATH_PREFIX + "/graph?" + query;
}
$(init);

Loading…
Cancel
Save