Wording Fix WE WA

This commit is contained in:
Lorenz Hilpert
2023-09-18 15:34:06 +02:00
parent fb8db78bbd
commit 05ef1edfeb
2 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ export abstract class PickupShelfBaseComponent {
const listPath = await this.getPathFoList();
await this.router.navigate(listPath.path, { queryParams: { ...queryParams, ...filterQueryParams, ...listPath.queryParams } });
} else {
// TODO: Fehlermeldung in Suchbux
// TODO: Fehlermeldung in Suchbox
await this.router.navigate([], { queryParams: { ...queryParams, ...filterQueryParams } });
}
});
@@ -60,7 +60,7 @@ export abstract class PickupShelfBaseComponent {
this._checkAndUpdateQueryParamsInStore();
const crumb = await this._checkAndUpdateBreadcrumb();
if (firstCheck && ['list', 'list-filter'].includes(crumb)) {
if (firstCheck && ['list', 'filter'].includes(crumb)) {
this.store.fetchList();
}
}

View File

@@ -4,11 +4,11 @@ import { PickupShelfStore } from '../../store';
import { AsyncPipe, NgIf } from '@angular/common';
@Component({
selector: 'page-pcikup-shelf-filter',
selector: 'page-pickup-shelf-filter',
templateUrl: 'pickup-shelf-filter.component.html',
styleUrls: ['pickup-shelf-filter.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
host: { class: 'page-pcikup-shelf-filter' },
host: { class: 'page-pickup-shelf-filter' },
standalone: true,
imports: [FilterModule, AsyncPipe, NgIf],
})