From 5a364cea009a92d9f6612f3c42a8edf40f2e7aee Mon Sep 17 00:00:00 2001 From: Shefali Date: Wed, 19 Mar 2025 11:05:28 -0700 Subject: [PATCH] Remove timelinePlugin argument to EventTimeline plugin --- index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index ea19d42d9d..e1e8df37e4 100644 --- a/index.html +++ b/index.html @@ -113,8 +113,7 @@ creatable: true }) ); - const timeLinePlugin = openmct.plugins.Timeline(); - openmct.install(timeLinePlugin); + openmct.install(openmct.plugins.Timeline()); openmct.install(openmct.plugins.Hyperlink()); openmct.install(openmct.plugins.UTCTimeSystem()); openmct.install( @@ -235,7 +234,7 @@ openmct.install(openmct.plugins.Timelist()); openmct.install(openmct.plugins.BarChart()); openmct.install(openmct.plugins.ScatterPlot()); - openmct.install(openmct.plugins.EventTimestripPlugin(timeLinePlugin)); + openmct.install(openmct.plugins.EventTimestripPlugin()); document.addEventListener('DOMContentLoaded', function () { openmct.start(); });