diff --git a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue index 84c3318d04..a0e6039e22 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue @@ -328,10 +328,9 @@ const onWrapperClick = e => { try { let newWindow if ('newPop' === jumpType) { - const openType = wsCache.get('open-backend') === '1' ? '_self' : '_blank' window.open( url, - openType, + '_blank', 'width=800,height=600,left=200,top=100,toolbar=no,scrollbars=yes,resizable=yes,location=no' ) } else { diff --git a/core/core-frontend/src/custom-component/common/CommonEvent.vue b/core/core-frontend/src/custom-component/common/CommonEvent.vue index 4d70a19acc..91face3bac 100644 --- a/core/core-frontend/src/custom-component/common/CommonEvent.vue +++ b/core/core-frontend/src/custom-component/common/CommonEvent.vue @@ -120,7 +120,7 @@ const onJumpValueChange = () => { diff --git a/core/core-frontend/src/views/chart/components/editor/dataset-select/DatasetSelect.vue b/core/core-frontend/src/views/chart/components/editor/dataset-select/DatasetSelect.vue index 2aee5713cc..10e97ecbe6 100644 --- a/core/core-frontend/src/views/chart/components/editor/dataset-select/DatasetSelect.vue +++ b/core/core-frontend/src/views/chart/components/editor/dataset-select/DatasetSelect.vue @@ -57,7 +57,7 @@ const newSource = : t('visualization.new_dataset') const sourceName = computed(() => - props.sourceType === 'datasource' ? t('visualization.datasource') : t('visualization.dataset') + props.sourceType === 'datasource' ? t('datasource.datasource') : t('visualization.dataset') ) const sortTypeChange = arr => {