diff --git a/src/plugins/notebook/components/NotebookEmbed.vue b/src/plugins/notebook/components/NotebookEmbed.vue index 9a61fc6700..d291cc5374 100644 --- a/src/plugins/notebook/components/NotebookEmbed.vue +++ b/src/plugins/notebook/components/NotebookEmbed.vue @@ -118,7 +118,7 @@ export default { painterroInstance.show(this.embed.snapshot.src); }, changeLocation() { - const link = this.embed.historicLink; + const hash = this.embed.historicLink; const bounds = this.openmct.time.bounds(); const isTimeBoundChanged = this.embed.bounds.start !== bounds.start @@ -143,6 +143,7 @@ export default { this.openmct.notifications.alert(message); } + const link = `${location.host}${location.pathname}${hash}`; const url = new URL(link); window.location.href = url.hash; }, diff --git a/src/plugins/notebook/components/NotebookMenuSwitcher.vue b/src/plugins/notebook/components/NotebookMenuSwitcher.vue index 05a9307bcd..faf0f7052d 100644 --- a/src/plugins/notebook/components/NotebookMenuSwitcher.vue +++ b/src/plugins/notebook/components/NotebookMenuSwitcher.vue @@ -17,7 +17,7 @@