diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index a7e1026ee9..38d54bb3e6 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -415,10 +415,9 @@ const windowsJump = (url, jumpType, size = 'middle') => { const width = screen.width * sizeX const left = screen.width * ((1 - sizeX) / 2) const top = screen.height * ((1 - sizeY) / 2) - const openType = wsCache.get('open-backend') === '1' ? '_self' : '_blank' newWindow = window.open( url, - openType, + '_blank', `width=${width},height=${height},left=${left},top=${top},toolbar=no,scrollbars=yes,resizable=yes,location=no` ) } else if ('_self' === jumpType) {