make clear data indicator a configurable option (#3206)

This commit is contained in:
Deep Tailor
2020-07-17 16:48:14 -07:00
committed by GitHub
parent 25bb9939d6
commit 7221dc1ac6
2 changed files with 22 additions and 15 deletions

View File

@@ -113,7 +113,10 @@
openmct.install(openmct.plugins.LADTable());
openmct.install(openmct.plugins.Filters(['table', 'telemetry.plot.overlay']));
openmct.install(openmct.plugins.ObjectMigration());
openmct.install(openmct.plugins.ClearData(['table', 'telemetry.plot.overlay', 'telemetry.plot.stacked']));
openmct.install(openmct.plugins.ClearData(
['table', 'telemetry.plot.overlay', 'telemetry.plot.stacked'],
{indicator: true}
));
openmct.start();
</script>
</html>