mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Wording Fix WE WA
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user