...
|
...
|
@@ -52,6 +52,7 @@ const DropdownContent = React.forwardRef<any, DropdownContentProps>( |
52
|
52
|
options?.map((opt) => ({
|
53
|
53
|
label: opt[fieldLabel],
|
54
|
54
|
key: opt[fieldValue],
|
|
55
|
+ ...(opt['extract']? {extract: opt['extract']}: {})
|
55
|
56
|
})),
|
56
|
57
|
[options],
|
57
|
58
|
);
|
...
|
...
|
|