From 1199fe19eccc6bb41741530241dfbb958a087a2f Mon Sep 17 00:00:00 2001 From: cmeng Date: Thu, 19 Jan 2023 09:00:52 +1300 Subject: [PATCH] fix(home): EE-4906 home page tiles for edge devices have the wrong url (#8354) --- app/react/portainer/environments/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/portainer/environments/utils/index.ts b/app/react/portainer/environments/utils/index.ts index de8eda981..ca29a7e73 100644 --- a/app/react/portainer/environments/utils/index.ts +++ b/app/react/portainer/environments/utils/index.ts @@ -79,7 +79,7 @@ export function getDashboardRoute(environment: Environment) { if (isEdgeAsync(environment)) { return { to: 'edge.browse.dashboard', - params: { environmentId: environment.EdgeID }, + params: { environmentId: environment.Id }, }; } }