Commit 16620118 authored by Sixiang_Zzb's avatar Sixiang_Zzb

筛选框刷新空白bug修复

parent 3265b750
...@@ -29,7 +29,7 @@ const SearchOptionsTow = (porps: any) => { ...@@ -29,7 +29,7 @@ const SearchOptionsTow = (porps: any) => {
placeholder="Community Name" placeholder="Community Name"
optionFilterProp="children" optionFilterProp="children"
onChange={onChange} onChange={onChange}
defaultValue={def} defaultValue={def ? def : null}
disabled={disabled} disabled={disabled}
> >
{options} {options}
...@@ -42,7 +42,7 @@ const SearchOptionsTow = (porps: any) => { ...@@ -42,7 +42,7 @@ const SearchOptionsTow = (porps: any) => {
placeholder="Community Name" placeholder="Community Name"
optionFilterProp="children" optionFilterProp="children"
onChange={onChange} onChange={onChange}
defaultValue={def} defaultValue={def ? def : null}
disabled={disabled} disabled={disabled}
> >
{options} {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