Skip to content
Snippets Groups Projects
Commit 70199173 authored by Carina Antunes's avatar Carina Antunes
Browse files

Merge branch 'fix-timeline' into 'master'

Fix timeline

See merge request drupal/paas/drupal-documentation!41
parents ae8af8fb 4fcaa2f8
No related branches found
No related tags found
No related merge requests found
......@@ -20,20 +20,20 @@ export function onRouteDidUpdate({location, previousLocation}) {
const milestones = [
{
name: "WordPress Lite",
start: new Date("2024-10-01"),
start: new Date("2024-11-01"),
end: new Date("2025-05-31"),
internal: false,
},
{
name: "WordPress MVP",
start: new Date("2024-12-01"),
end: new Date("2025-03-31"),
start: new Date("2025-01-01"),
end: new Date("2025-02-31"),
internal: true,
},
{
name: "WordPress Pilot",
start: new Date("2025-03-01"),
end: new Date("2025-05-31"),
end: new Date("2025-04-31"),
internal: true,
},
{
......@@ -150,7 +150,7 @@ export function onRouteDidUpdate({location, previousLocation}) {
});
// Draw today's date line
const today = new Date("2024-08-19");
const today = new Date();
const todayX = margin.left + timeScale(today);
ctx.strokeStyle = "#FF6B6B";
ctx.lineWidth = 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment