@messaia/cdk 13.3.1 → 13.3.2-rc03

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14962,7 +14962,8 @@ class VdLayoutNavComponent {
14962
14962
  */
14963
14963
  handleBackNavigationClick() {
14964
14964
  if (this.backNavigationRouteEnabled) {
14965
- this.router.navigate([this.backNavigationRoute], { relativeTo: this.route });
14965
+ var urlParts = Utils.getUrlParts(this.backNavigationRoute);
14966
+ this.router.navigate([urlParts.url], { queryParams: urlParts.params, fragment: urlParts.hash });
14966
14967
  }
14967
14968
  }
14968
14969
  /**
@@ -14970,7 +14971,7 @@ class VdLayoutNavComponent {
14970
14971
  */
14971
14972
  handleNavigationClick() {
14972
14973
  if (this.routerEnabled) {
14973
- this.router.navigate([this.navigationRoute], { relativeTo: this.route });
14974
+ this.router.navigateByUrl(this.navigationRoute);
14974
14975
  }
14975
14976
  }
14976
14977
  }