diff --git a/core/core-frontend/src/components/dashboard/DbToolbar.vue b/core/core-frontend/src/components/dashboard/DbToolbar.vue index 1b362b4d50..0d077ef956 100644 --- a/core/core-frontend/src/components/dashboard/DbToolbar.vue +++ b/core/core-frontend/src/components/dashboard/DbToolbar.vue @@ -138,7 +138,7 @@ const previewOuter = () => { return } canvasSave(() => { - const url = '#/preview?ignoreParams=true&dvId=' + dvInfo.value.id + const url = '#/preview?dvId=' + dvInfo.value.id + '&ignoreParams=true' const newWindow = window.open(url, '_blank') initOpenHandler(newWindow) }) diff --git a/core/core-frontend/src/views/data-visualization/PreviewHead.vue b/core/core-frontend/src/views/data-visualization/PreviewHead.vue index 3e39e6a03c..0e8304f0ab 100644 --- a/core/core-frontend/src/views/data-visualization/PreviewHead.vue +++ b/core/core-frontend/src/views/data-visualization/PreviewHead.vue @@ -35,7 +35,7 @@ const preview = () => { baseUrl = baseUrl.replace('oidcbi/', '') baseUrl = baseUrl.replace('casbi/', '') } - const url = baseUrl + '#/preview?&ignoreParams=true&dvId=' + dvInfo.value.id + const url = baseUrl + '#/preview?dvId=' + dvInfo.value.id + '&ignoreParams=true' const newWindow = window.open(url, '_blank') initOpenHandler(newWindow) }