Skip to content

Commit

Permalink
fix(ui): add /concepts in workflow docs URL (#6464)
Browse files Browse the repository at this point in the history
Signed-off-by: François Magimel <[email protected]>
  • Loading branch information
Linkid authored Feb 16, 2023
1 parent 1257723 commit b2da040
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/shared/workflow/wizard/hook/hook.form.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<form nz-form>
<div class="link">
<i nz-icon nzType="book" nzTheme="outline"></i>
<a href="#" [routerLink]="['/docs', 'workflow', 'hooks']" target="_blank"
<a href="#" [routerLink]="['/docs', 'docs', 'concepts', 'workflow', 'hooks']" target="_blank"
rel="noopener noreferrer">{{'common_documentation' | translate}}</a>
</div>
<h3>Hook configuration</h3>
Expand Down
4 changes: 2 additions & 2 deletions ui/src/app/shared/workflow/wizard/node-add/node.wizard.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</nz-form-item>
<nz-form-item>
<nz-form-label>
<a href="#" [routerLink]="['/docs', 'docs', 'workflow', 'mutex']" target="_blank" rel="noopener noreferrer">
<a href="#" [routerLink]="['/docs', 'docs', 'concepts', 'workflow', 'mutex']" target="_blank" rel="noopener noreferrer">
{{ 'workflow_root_context_mutex' | translate }}
<span nz-icon nzType="link" nzTheme="outline"></span>
</a>
Expand All @@ -56,7 +56,7 @@
<nz-alert nzType="error" *ngIf="errorPipelineNamePattern" nzMessage="Invalid pipeline name. Allowed pattern is: a-zA-Z0-9._-"></nz-alert>
<nz-form-item>
<nz-form-label>
<a href="#" [routerLink]="['/docs', 'docs', 'workflow', 'mutex']" target="_blank" rel="noopener noreferrer">
<a href="#" [routerLink]="['/docs', 'docs', 'concepts', 'workflow', 'mutex']" target="_blank" rel="noopener noreferrer">
{{ 'workflow_root_context_mutex' | translate }}
<span nz-icon nzType="link" nzTheme="outline"></span>
</a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<form nz-form>
<div class="link">
<i nz-icon nzType="book" nzTheme="outline"></i>
<a href="#" [routerLink]="['/docs', 'docs', 'workflow', 'hooks']" target="_blank"
<a href="#" [routerLink]="['/docs', 'docs', 'concepts', 'workflow', 'hooks']" target="_blank"
rel="noopener noreferrer">{{'common_documentation' | translate}}</a>
</div>
<h3>Hook configuration</h3>
Expand Down

0 comments on commit b2da040

Please sign in to comment.