From 0acda9efd04d5670ee6f1b0ae5790a2702efbfea Mon Sep 17 00:00:00 2001 From: Julien Schneider Date: Wed, 14 Feb 2024 09:46:16 +0100 Subject: [PATCH] fix: link to edit a project (#1465) --- .../system/projects/projects-list/projects-list.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dsp-app/src/app/system/projects/projects-list/projects-list.component.ts b/apps/dsp-app/src/app/system/projects/projects-list/projects-list.component.ts index f9e94af78d..78eb2a933e 100644 --- a/apps/dsp-app/src/app/system/projects/projects-list/projects-list.component.ts +++ b/apps/dsp-app/src/app/system/projects/projects-list/projects-list.component.ts @@ -136,7 +136,7 @@ export class ProjectsListComponent implements OnInit, OnDestroy { editProject(iri: string) { const uuid = ProjectService.IriToUuid(iri); - this._router.navigate([RouteConstants.project, uuid, RouteConstants.edit]); + this._router.navigate([RouteConstants.project, uuid, RouteConstants.settings, RouteConstants.edit]); } askToDeactivateProject(name: string, id: string) {