Skip to content

Commit 559f9d7

Browse files
authored
limit picker number of lines (#2712)
1 parent 07006dd commit 559f9d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/picker/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const Picker = React.forwardRef((props: PickerProps, ref) => {
261261
const renderPickerInnerInput = () => {
262262
if (fieldType === PickerFieldTypes.filter) {
263263
return (
264-
<Text text70 style={others.style}>
264+
<Text text70 numberOfLines={1} style={others.style}>
265265
{label ?? others.placeholder}
266266
</Text>
267267
);

0 commit comments

Comments
 (0)