This is an automated email from the ASF dual-hosted git repository. kinghao pushed a commit to branch master-fixjobresult in repository https://gitbox.apache.org/repos/asf/linkis.git
commit 65cf1833f047bdc3d1ef730a840f2dbd7e64ddeb Author: kinghao <[email protected]> AuthorDate: Sat Nov 29 23:17:13 2025 +0800 fix jobhistory --- .../linkis/module/globalHistoryManagement/viewHistory.vue | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/linkis-web/src/apps/linkis/module/globalHistoryManagement/viewHistory.vue b/linkis-web/src/apps/linkis/module/globalHistoryManagement/viewHistory.vue index fc1574e1b6..1bf2c630f3 100644 --- a/linkis-web/src/apps/linkis/module/globalHistoryManagement/viewHistory.vue +++ b/linkis-web/src/apps/linkis/module/globalHistoryManagement/viewHistory.vue @@ -194,20 +194,6 @@ export default { }, // The request is triggered when the tab is clicked, and the log is requested at the beginning, and no judgment is made.(点击tab时触发请求,log初始就请求了,不做判断) async onClickTabs(name) { - const canResultSet = sessionStorage.getItem('canResultSet'); - if(name === 'result' && canResultSet === 'false') { - try { - setTimeout(() => { - this.tabName = this.preName; - }, 0); - window.open(`http://${window.location.host}/#/results?parentPath=${this.jobhistoryTask.resultLocation}&taskId=${this.$route.query.taskID}&fileName=example.${this.jobhistoryTask.runType}`, '_blank') - - return; - } catch (error) { - window.console.error(error) - } - - } this.tabName = name this.preName = name if (name === 'result') { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
