Skip to content

Commit

Permalink
try fixing #471
Browse files Browse the repository at this point in the history
  • Loading branch information
anobaka committed Nov 27, 2023
1 parent e28f644 commit 801c065
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ export default React.memo((props: IProps) => {
break;
case FilterType.Select:
label = f.multiple ? value.map((k) => f.dataSource!.find((x) => x.value == k))
.filter(x => x != undefined)
.map((x) => x.label)
.join(', ') : f.dataSource!.find((x) => x.value == value)!.label;
break;
Expand Down

0 comments on commit 801c065

Please sign in to comment.