From a918096b785d529437083c67cef33a4715cd16f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pasteau?= <4895034+ClementPasteau@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:52:38 +0100 Subject: [PATCH] Scroll to projects when opening from dashboard --- newIDE/app/src/GameDashboard/GameDashboardCard.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/newIDE/app/src/GameDashboard/GameDashboardCard.js b/newIDE/app/src/GameDashboard/GameDashboardCard.js index ee58d293df92..9f51b956376b 100644 --- a/newIDE/app/src/GameDashboard/GameDashboardCard.js +++ b/newIDE/app/src/GameDashboard/GameDashboardCard.js @@ -435,7 +435,8 @@ const GameDashboardCard = ({ { type: 'separator' }, { label: i18n._(t`See all in the game dashboard`), - click: () => onOpenGameManager({ game }), + click: () => + onOpenGameManager({ game, widgetToScrollTo: 'projects' }), }, ] );