Skip to content

Commit bdabc21

Browse files
committed
fix: analyses url path
1 parent b3a1953 commit bdabc21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal-ui/src/stores/projects.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export const useProjectsStore = defineStore('projects', () => {
369369
}
370370

371371
async function getAnalyses(name: string, table: string) {
372-
return api.get(`/project/${name}/table/${name}/analyses`).then((response) => response.data);
372+
return api.get(`/project/${name}/table/${table}/analyses`).then((response) => response.data);
373373
}
374374

375375
async function runAnalysis(name: string, analysis: AnalyseCommandOptionsDto) {

0 commit comments

Comments
 (0)