Skip to content

Commit

Permalink
fix: 长字段选择加 title 展示 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvisei authored Sep 14, 2023
1 parent 4aaefe7 commit ffaa846
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const InternalSelect: React.FC<SelectProps<string, FieldSelectOptionType>> = (pr
<Tag color={item.typeColor}>{isUndefined(item.typeName) ? item.type : item.typeName}</Tag>
)}

<span>{item.label}</span>
<span title={item.label}>{item.label}</span>
</div>
</Select.Option>
);
Expand Down

0 comments on commit ffaa846

Please sign in to comment.