Browse Source

修复select无选中时的显示BUG (#9334)

Signed-off-by: lzskyline <lzskyline@foxmail.com>
pull/9795/head
LzSkyline 4 years ago
committed by GitHub
parent
commit
1e5bd2fbdb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/pages/list/search/articles/index.tsx

2
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}

Loading…
Cancel
Save