Skip to content

Commit

Permalink
fix route when fetching work-packages (#70)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Neumann <artur@jankaritech.com>
  • Loading branch information
individual-it committed Mar 11, 2022
1 parent f87dec8 commit 7c1de37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ProjectsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default {
},
async fetchWorkpackages(fileId) {
const req = {}
const url = generateUrl('/apps/integration_openproject/work_packages?fileId=' + fileId)
const url = generateUrl('/apps/integration_openproject/work-packages?fileId=' + fileId)
try {
const response = await axios.get(url, req)
if (!Array.isArray(response.data)) {
Expand Down

0 comments on commit 7c1de37

Please sign in to comment.