summaryrefslogtreecommitdiff
path: root/src/api/routes/traces.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/traces.js')
-rw-r--r--src/api/routes/traces.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/routes/traces.js b/src/api/routes/traces.js
index 6a34ca7c..a9ee4fae 100644
--- a/src/api/routes/traces.js
+++ b/src/api/routes/traces.js
@@ -1,9 +1,9 @@
-import {getAll, getById} from "./util";
+import { getAll, getById } from "./util";
export function getAllTraces() {
- return getAll("/traces");
+ return getAll("/traces");
}
export function getJobsOfTrace(traceId) {
- return getById("/traces/{traceId}/jobs", {traceId});
+ return getById("/traces/{traceId}/jobs", { traceId });
}