ngOnInit(): void {
this.brands = this._brandService.getBrands();
this.CheckDisplayBrands("A");
}
CheckDisplayBrands(brandtype){
console.log(brandtype);
this.displayBrands = this.brands.filter(brand => brand.parent === brandtype);
if(brandtype == "ALL"){
this.displayBrands = this.brands;
}
console.error(this.displayBrands);
}