RED-4683: fix
This commit is contained in:
parent
b6aa7d0f46
commit
f9cf3c2662
@ -323,8 +323,8 @@ export class ConfigService {
|
|||||||
filters: [...filterValue].map(
|
filters: [...filterValue].map(
|
||||||
(value: string) =>
|
(value: string) =>
|
||||||
new NestedFilter({
|
new NestedFilter({
|
||||||
id: value,
|
id: value ?? 'empty',
|
||||||
label: value === undefined ? this._translateService.instant('filters.empty') : value,
|
label: value ?? this._translateService.instant('filters.empty'),
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
checker: (input: File, filter: INestedFilter) => filter.id === input.fileAttributes.attributeIdToValue[id],
|
checker: (input: File, filter: INestedFilter) => filter.id === input.fileAttributes.attributeIdToValue[id],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user