Skip to content

Commit

Permalink
fix: select 类型错误修改
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyu committed Jun 30, 2022
1 parent a5ec389 commit fc22bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface SelectProps {
dropdownStyle?: React.CSSProperties;
errorMessage?: string | React.ReactNode;
extraOptions?: string | React.ReactNode;
filterOption?: boolean | ((value: SelectValue, child?: React.ReactNode) => void);
filterOption?: boolean | ((inputValue, option) => boolean);
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
labelClear?: boolean;
labelInValue?: boolean;
Expand Down

0 comments on commit fc22bd2

Please sign in to comment.