From 7bb39ee088e9073f5974bb705f5a690fbfc9b155 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 17 Jan 2023 22:52:48 +0100 Subject: [PATCH] fix: setLoading when updating a project --- src/stores/projects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/projects.ts b/src/stores/projects.ts index 63f8d2cde..98a85a4f7 100644 --- a/src/stores/projects.ts +++ b/src/stores/projects.ts @@ -110,7 +110,7 @@ export const useProjectStore = defineStore('project', () => { } async function updateProject(project: IProject) { - const cancel = setModuleLoading(this, setIsLoading) + const cancel = setModuleLoading(setIsLoading) const projectService = new ProjectService() try {