diff --git a/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.html b/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.html
index 6a2ac3968e..c26c2682e5 100644
--- a/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.html
+++ b/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.html
@@ -16,7 +16,6 @@
;
public isInbound$: Observable;
@@ -50,15 +47,18 @@ export class AdminNotifyLogsResultComponent implements OnInit {
);
}
-
+ /**
+ * Reset route state to default configuration
+ */
public resetDefaultConfiguration() {
- // we prevent cache use on reset so that the result are rendered properly
- this.searchComponent.useCachedVersionIfAvailable = false;
- this.router.navigate([this.getResolvedUrl(this.route.snapshot)], {
- queryParams: {
- configuration: this.defaultConfiguration,
- view: ViewMode.Table,
- },
+ //Idle navigation to trigger rendering of result on same page
+ this.router.navigateByUrl('/', { skipLocationChange: true }).then(() => {
+ this.router.navigate([this.getResolvedUrl(this.route.snapshot)], {
+ queryParams: {
+ configuration: this.defaultConfiguration,
+ view: ViewMode.Table,
+ },
+ });
});
}