Commit 412613fd by Johannes Edmeier

fix broken PID in details view

parent e595cdc7
......@@ -69,7 +69,7 @@ class Instance {
}
async fetchEnv(name) {
return axios.get(uri`instances/${this.id}/actuator/env${name ? `/${name}` : '' }`, {
return axios.get(uri`instances/${this.id}/actuator/env/${name || '' }`, {
headers: {'Accept': actuatorMimeTypes}
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment