We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad3e23 commit f393d24Copy full SHA for f393d24
src/app/offerings/gallery/gallery.component.ts
@@ -63,7 +63,7 @@ export class GalleryComponent implements OnInit {
63
});
64
}
65
66
- ngOnInit() {
+ async ngOnInit() {
67
this.products=[];
68
this.nextProducts=[];
69
this.checkPanel();
@@ -72,7 +72,7 @@ export class GalleryComponent implements OnInit {
72
this.keywords = keywords;
73
this.searchField.setValue(this.keywords);
74
75
- this.getProducts(false);
+ await this.getProducts(false);
76
77
this.eventMessage.messages$.subscribe(ev => {
78
if(ev.type === 'AddedFilter' || ev.type === 'RemovedFilter') {
0 commit comments