I have this : ```ts
this.auditLog$ = this._monitoringService.getAuditLog(this.task.value.id);
```html
<audit-log fxFlex="calc(35% - 10px)" *ngIf="(auditLog$ | async); let log" [auditLogs]="auditLog$"></audit-log>
When I go to a new page using the search bar, this component doesn't reload. Do I need like a targetChange?