Browse Source
修复select无选中时的显示BUG (#9334)
Signed-off-by: lzskyline <lzskyline@foxmail.com>
pull/9795/head
LzSkyline
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/pages/list/search/articles/index.tsx
|
|
|
@ -144,7 +144,7 @@ const Articles: FC = () => { |
|
|
|
</StandardFormRow> |
|
|
|
<StandardFormRow title="owner" grid> |
|
|
|
<FormItem name="owner" noStyle> |
|
|
|
<Select mode="multiple" placeholder="选择 owner"> |
|
|
|
<Select mode="multiple" placeholder="选择 owner" style={{'minWidth': '6rem'}}> |
|
|
|
{owners.map((owner) => ( |
|
|
|
<Option key={owner.id} value={owner.id}> |
|
|
|
{owner.name} |
|
|
|
|