Fix bug trying to get project info for undefined

This commit is contained in:
D. Berge
2025-08-18 13:51:37 +02:00
parent 7c52ada922
commit 7b67b4afc9

View File

@@ -1,5 +1,10 @@
async function getProject ({commit, dispatch}, projectId) {
if (projectId == null) {
console.log(`Skipping call to getProject${projectId})`);
return;
}
const init = {
headers: {
cache: "reload",