We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 361aa76 commit c171b25Copy full SHA for c171b25
src/app/core/header/navigation/notification/notification.component.html
@@ -46,7 +46,9 @@ <h2 mat-dialog-title><span class="underline">Notifications</span></h2>
46
<th mat-header-cell *matHeaderCellDef>Link</th>
47
<td mat-cell *matCellDef="let element">
48
<div class="dialog-container__link">
49
- <a mat-icon-button *ngIf="element.link" [routerLink]="element.link"
+ <a mat-icon-button *ngIf="element.link"
50
+ [routerLink]="element.link.split('?')[0]"
51
+ [queryParams]="{highlight: element.link.split('?')[1].split('=')[1]}"
52
tabindex="-1" (click)="markAsRead(element)" matDialogClose>
53
<mat-icon>arrow_forward</mat-icon>
54
</a>
0 commit comments