diff --git a/projects/rero/ng-core/src/lib/record/record-ui.service.ts b/projects/rero/ng-core/src/lib/record/record-ui.service.ts index 49cec7bc..656d4489 100644 --- a/projects/rero/ng-core/src/lib/record/record-ui.service.ts +++ b/projects/rero/ng-core/src/lib/record/record-ui.service.ts @@ -145,7 +145,7 @@ export class RecordUiService { if (config.redirectUrl) { config.redirectUrl(record, action).subscribe((result: string) => { if (result !== null) { - this.router.navigate([result]); + this.router.navigateByUrl(result); return; } });