Umbau: header & businessListing
This commit is contained in:
@@ -57,11 +57,8 @@ export class SelectOptionsService {
|
||||
getIconType(value: string): string {
|
||||
return this.typesOfBusiness.find(c => c.value === value)?.icon;
|
||||
}
|
||||
getTextColorType(value: string): string {
|
||||
return this.typesOfBusiness.find(c => c.value === value)?.textColorClass;
|
||||
}
|
||||
getBgColorType(value: number): string {
|
||||
return this.typesOfBusiness.find(c => c.value === String(value))?.bgColorClass;
|
||||
getTextColorType(value: number): string {
|
||||
return this.typesOfBusiness.find(c => c.value === String(value))?.textColorClass;
|
||||
}
|
||||
getIconAndTextColorType(value: number): string {
|
||||
const category = this.typesOfBusiness.find(c => c.value === String(value));
|
||||
|
||||
Reference in New Issue
Block a user