Merge branch 'release/4.5' into develop

This commit is contained in:
Nino
2025-12-02 17:33:50 +01:00

View File

@@ -91,7 +91,9 @@ export class ReturnDetailsOrderGroupItemControlsComponent {
dropdownLabel = computed(() => {
const category = this.productCategory();
return category ?? 'Produktart';
return !!category && category !== ProductCategory.Unknown
? category
: 'Produktart';
});
setProductCategory(category: ProductCategory | undefined) {