diff --git a/src/plugins/plan/Plan.vue b/src/plugins/plan/Plan.vue index 5664599966..b65b8a3a64 100644 --- a/src/plugins/plan/Plan.vue +++ b/src/plugins/plan/Plan.vue @@ -122,6 +122,11 @@ export default { }, updateViewBounds() { this.viewBounds = this.openmct.time.bounds(); + //Add a 50% padding to the end bounds to look ahead + let timespan = (this.viewBounds.end - this.viewBounds.start); + let padding = timespan / 2; + this.viewBounds.end = this.viewBounds.end + padding; + if (this.timeSystem === undefined) { this.timeSystem = this.openmct.time.timeSystem(); } diff --git a/src/plugins/timeline/Plan.vue b/src/plugins/timeline/Plan.vue deleted file mode 100644 index e69de29bb2..0000000000