mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Customer features werden nicht angezugt wenn disabled oder keine description
This commit is contained in:
@@ -38,7 +38,8 @@ export class CustomerFeaturesComponent {
|
||||
)
|
||||
),
|
||||
filter((customer) => !!customer),
|
||||
map((customer) => customer.features || [])
|
||||
map((customer) => customer.features || []),
|
||||
map((features) => features.filter((f) => f.enabled && !!f.description))
|
||||
);
|
||||
|
||||
constructor(private customerService: CustomerService) {}
|
||||
|
||||
Reference in New Issue
Block a user