Skip to content

Commit

Permalink
Improve the name for new dashboards
Browse files Browse the repository at this point in the history
Previously, all freshly created dashboards had the exact same name. We now include the current date and time upon creation.
  • Loading branch information
pklaschka committed Jan 24, 2024
1 parent bba5a4b commit 10083c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend-react/src/lib/user-data/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function getEmptyDashboard(): readonly [
return [
id,
{
title: 'Empty Dashboard',
title: `Untitled (${new Date().toLocaleString()})`,
layout: [
['.', '.'],
['.', '.']
Expand Down

0 comments on commit 10083c5

Please sign in to comment.