Skip to content

Commit

Permalink
Merge pull request #7190 from ever-co/fix/cant-redirect-to-candidate-…
Browse files Browse the repository at this point in the history
…profile

Fix: broken link
  • Loading branch information
evereq authored Nov 25, 2023
2 parents a030abf + 243a0c5 commit 81c5907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export class CandidatesComponent extends PaginationFilterBaseComponent
}

const candidateId = this.selectedCandidate.id;
this.router.navigate(['/pages/employees/candidates/edit/', candidateId, '/profile']);
this.router.navigate(['/pages/employees/candidates/edit', candidateId, 'profile']);
}

async archive(selectedItem?: ICandidateViewModel) {
Expand Down

0 comments on commit 81c5907

Please sign in to comment.