This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/kylin5 by this push: new dffb081ed3 Minor fix related url for kylin5 dffb081ed3 is described below commit dffb081ed30074ee2ab8770f2e76d3ae5b7fd4ba Author: Mukvin <boyboys...@163.com> AuthorDate: Wed Nov 16 14:42:31 2022 +0800 Minor fix related url for kylin5 --- kystudio/src/components/monitor/batchJobs/jobErrorDetail.vue | 4 ++-- kystudio/src/components/user/login.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kystudio/src/components/monitor/batchJobs/jobErrorDetail.vue b/kystudio/src/components/monitor/batchJobs/jobErrorDetail.vue index 23835a06aa..73c1df7a36 100644 --- a/kystudio/src/components/monitor/batchJobs/jobErrorDetail.vue +++ b/kystudio/src/components/monitor/batchJobs/jobErrorDetail.vue @@ -57,12 +57,12 @@ export default class jobErrorDetail extends Vue { return `${this.currentErrorJob.failed_code ?? ''}${this.currentErrorJob.failed_reason ?? (this.$t('errorStepTips', {name: this.currentErrorJob.failed_step_name ? (this.getSubTasksName(this.currentErrorJob.failed_step_name) || this.getStepLineName(this.currentErrorJob.name)) : this.getStepLineName(this.currentErrorJob.name)}))}` } - // 跳转至手册 + // 跳转至 ISSUES jumpToManual () { const manualAddrs = this.currentErrorJob.failed_resolve if (manualAddrs) { const tag = document.createElement('a') - tag.href = `https://docs.kyligence.io/books/v4.5/${this.$lang}${manualAddrs}` + tag.href = `https://issues.apache.org/jira/issues/?filter=12352421` tag.target = '_blank' tag.click() } diff --git a/kystudio/src/components/user/login.vue b/kystudio/src/components/user/login.vue index fe7b67e418..f3c6186145 100644 --- a/kystudio/src/components/user/login.vue +++ b/kystudio/src/components/user/login.vue @@ -20,7 +20,7 @@ <ul> <li><i class="el-icon-ksd-login_intro ksd-fs-12"></i><a :href="$t('introductionUrl')" target="_blank">{{$t('introduction')}}</a></li> <li><i class="el-icon-ksd-details ksd-fs-12"></i><a :href="'https://kylin.apache.org/docs/'" target="_blank">{{$t('manual')}}</a></li> - <li><i class="el-icon-ksd-login_email ksd-fs-12"></i><a href="mailto:u...@kyligence.io">{{$t('contactUs')}}</a></li> + <li><i class="el-icon-ksd-login_email ksd-fs-12"></i><a href="mailto:u...@kylin.apache.org">{{$t('contactKylin')}}</a></li> </ul> </div> </el-col> @@ -129,7 +129,7 @@ import { Base64 } from 'js-base64' introduction: 'Introduction', introductionUrl: 'https://kylin.apache.org/', manual: 'Manual', - contactUs: 'Contact Us', + contactKylin: 'Contact Kylin', accessForbidden: 'Access denied' } }