Fixed call error when filter item is applied
This commit is contained in:
parent
634d42022b
commit
279dc6f1c0
@ -56,6 +56,9 @@ export class CatalogComponent implements OnInit {
|
|||||||
|
|
||||||
onFilterApplied(event: any) {
|
onFilterApplied(event: any) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
|
this.brandSelected = this.brandSelected && this.brandSelected.toString() != "null" ? this.brandSelected : null;
|
||||||
|
this.typeSelected = this.typeSelected && this.typeSelected.toString() != "null" ? this.typeSelected : null;
|
||||||
this.getCatalog(this.paginationInfo.itemsPage, this.paginationInfo.actualPage, this.brandSelected, this.typeSelected);
|
this.getCatalog(this.paginationInfo.itemsPage, this.paginationInfo.actualPage, this.brandSelected, this.typeSelected);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,6 +85,7 @@ export class CatalogComponent implements OnInit {
|
|||||||
|
|
||||||
getCatalog(pageSize: number, pageIndex: number, brand?: number, type?: number) {
|
getCatalog(pageSize: number, pageIndex: number, brand?: number, type?: number) {
|
||||||
this.errorReceived = false;
|
this.errorReceived = false;
|
||||||
|
|
||||||
this.service.getCatalog(pageIndex, pageSize, brand, type)
|
this.service.getCatalog(pageIndex, pageSize, brand, type)
|
||||||
.pipe(catchError((err) => this.handleError(err)))
|
.pipe(catchError((err) => this.handleError(err)))
|
||||||
.subscribe(catalog => {
|
.subscribe(catalog => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user