This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch branch-0.12 in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push: new 81fa7507a3 [ZEPPELIN-6206] Fix notebook paths in job manager page 81fa7507a3 is described below commit 81fa7507a3ab399dce9c8749267d17b63fbf9782 Author: ChanHo Lee <chanho0...@gmail.com> AuthorDate: Mon Jun 30 23:19:40 2025 +0900 [ZEPPELIN-6206] Fix notebook paths in job manager page ### What is this PR for? URLs to notebook page are set wrong in job manager page ### What type of PR is it? Bug Fix ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-6206 ### How should this be tested? - Enable cron and job manager configurations and check a links in the page - `zeppelin.jobmanager.enable` : `true` - `zeppelin.notebook.cron.enable`: `true` - `zeppelin.notebook.cron.folders` : `/`  ### Questions: * Does the license files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Closes #4951 from tbonelee/fix-notebook-path. Signed-off-by: Philipp Dallig <philipp.dal...@gmail.com> (cherry picked from commit 1ca383eebe35b284048d628c01aeadf2c9c62c4a) Signed-off-by: Philipp Dallig <philipp.dal...@gmail.com> --- .../src/app/pages/workspace/job-manager/job/job.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zeppelin-web-angular/src/app/pages/workspace/job-manager/job/job.component.html b/zeppelin-web-angular/src/app/pages/workspace/job-manager/job/job.component.html index 4d76c7694a..7aa6da35a6 100644 --- a/zeppelin-web-angular/src/app/pages/workspace/job-manager/job/job.component.html +++ b/zeppelin-web-angular/src/app/pages/workspace/job-manager/job/job.component.html @@ -17,7 +17,7 @@ [nzType]="icon" nzTheme="outline"> </i> - <a [routerLink]="['notebook', note.noteId]" [innerHTML]="note.noteName | nzHighlight: highlight: 'gi': 'mark-highlight'"></a> - + <a [routerLink]="['/', 'notebook', note.noteId]" [innerHTML]="note.noteName | nzHighlight: highlight: 'gi': 'mark-highlight'"></a> - <span class="interpreter" [class.unset]="!note.interpreter"> {{note.interpreter || 'interpreter is not set'}} @@ -40,7 +40,7 @@ [nz-tooltip]="item.name + ' is ' + item.status" nzPlacement="topLeft" [nzOverlayStyle]="{ 'margin-left': '-14px' }" - [routerLink]="['notebook', note.noteId]" + [routerLink]="['/', 'notebook', note.noteId]" [queryParams]="{paragraph: item.id}"> <zeppelin-job-manager-job-status [status]="item.status"> </zeppelin-job-manager-job-status>