From 02ff8b36dd95a247c50496d538c725bfdcdc9bbf Mon Sep 17 00:00:00 2001 From: rdmclin2 Date: Sat, 16 Sep 2023 20:46:09 +0800 Subject: [PATCH] :bug: fix: no extra --- src/FieldSelect/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FieldSelect/index.tsx b/src/FieldSelect/index.tsx index 11a65cda..0d9d47f8 100644 --- a/src/FieldSelect/index.tsx +++ b/src/FieldSelect/index.tsx @@ -107,7 +107,7 @@ const FieldSelect: React.FC = (props) => { options={(options || []).map((item: FieldSelectOptionType) => { const { label, value, type, description } = item; return { - label: , + label: , value, key: value, };