#1887 Navigation auf Hauptseite wenn hits 0 ist

This commit is contained in:
Lorenz Hilpert
2021-06-16 09:04:41 +02:00
parent 18e017419b
commit f4a317228b

View File

@@ -254,7 +254,7 @@ export class ArticleSearchStore extends ComponentStore<ArticleSearchState> {
navigateToMain() {
const path = '/product/search';
if (!this.router.isActive(path, false)) {
if (!this.router.isActive(path, true)) {
this.router.navigate([path], { queryParams: this.queryParams });
}
}