From 10083c56a8c01cb00cf7a33e172772b8005189c4 Mon Sep 17 00:00:00 2001 From: Zuri Klaschka Date: Wed, 24 Jan 2024 12:46:52 +0100 Subject: [PATCH] Improve the name for new dashboards Previously, all freshly created dashboards had the exact same name. We now include the current date and time upon creation. --- frontend-react/src/lib/user-data/model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-react/src/lib/user-data/model.ts b/frontend-react/src/lib/user-data/model.ts index 1830e6e..8fc0be2 100644 --- a/frontend-react/src/lib/user-data/model.ts +++ b/frontend-react/src/lib/user-data/model.ts @@ -108,7 +108,7 @@ export function getEmptyDashboard(): readonly [ return [ id, { - title: 'Empty Dashboard', + title: `Untitled (${new Date().toLocaleString()})`, layout: [ ['.', '.'], ['.', '.']