Trailing slash in API call results in "unauthorised" error.

No idea why.
This commit is contained in:
D. Berge
2023-09-09 20:39:49 +02:00
parent 8e11e242ed
commit fb3d3be546

View File

@@ -98,7 +98,7 @@ export default {
methods: {
async list () {
this.items = await this.api(["/project/"]) || [];
this.items = await this.api(["/project"]) || [];
},
async summary (item) {