ngx-wapp-components 1.4.3 → 1.4.4

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.
@@ -2632,7 +2632,7 @@ class WFilterPanelComponent {
2632
2632
  while (route.parent) {
2633
2633
  route = route.parent;
2634
2634
  if (route.snapshot.routeConfig && route.snapshot.routeConfig.path) {
2635
- parentRoute = route.snapshot.routeConfig.path + '/' + parentRoute;
2635
+ parentRoute = route.snapshot.routeConfig.path + (parentRoute ? '/' : '') + parentRoute;
2636
2636
  }
2637
2637
  }
2638
2638
  return parentRoute;