Skip to content

Commit 1a98b3f

Browse files
committed
workbench: use @Calendar for today node. fixes #232
1 parent a8d00d3 commit 1a98b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/workbench/workbench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export class Workbench {
135135
const dayNode = today.toUTCString().split(today.getFullYear())[0];
136136
const weekNode = `Week ${String(getWeekOfYear(today)).padStart(2, "0")}`;
137137
const yearNode = `${today.getFullYear()}`;
138-
const todayPath = ["@workspace", "Calendar", yearNode, weekNode, dayNode].join("/");
138+
const todayPath = ["@calendar", yearNode, weekNode, dayNode].join("/");
139139
let todayNode = this.workspace.find(todayPath);
140140
if (!todayNode) {
141141
todayNode = this.workspace.new(todayPath);

0 commit comments

Comments
 (0)