Commit 16620118 authored by Sixiang_Zzb's avatar Sixiang_Zzb

筛选框刷新空白bug修复

parent 3265b750
......@@ -29,7 +29,7 @@ const SearchOptionsTow = (porps: any) => {
placeholder="Community Name"
optionFilterProp="children"
onChange={onChange}
defaultValue={def}
defaultValue={def ? def : null}
disabled={disabled}
>
{options}
......@@ -42,7 +42,7 @@ const SearchOptionsTow = (porps: any) => {
placeholder="Community Name"
optionFilterProp="children"
onChange={onChange}
defaultValue={def}
defaultValue={def ? def : null}
disabled={disabled}
>
{options}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment