Fixes the pipe-alive check when running scope-ui under a path

This commit is contained in:
Simon Howe
2016-03-03 14:13:40 +01:00
parent fa4ab4837a
commit 186a45e052

View File

@@ -214,7 +214,7 @@ export function deletePipe(pipeId) {
}
export function getPipeStatus(pipeId) {
const url = `/api/pipe/${encodeURIComponent(pipeId)}/check`;
const url = `api/pipe/${encodeURIComponent(pipeId)}/check`;
reqwest({
method: 'GET',
url: url,