Skip to content

Commit

Permalink
temp(*): fix breadcrumb render error in sketch
Browse files Browse the repository at this point in the history
  • Loading branch information
myronliu347 committed Oct 11, 2019
1 parent 2c53354 commit 9c65a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/breadcrumb/adaptor/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
return (
<Breadcrumb {...others} {...props}>
{
list.map((item, index) => <Breadcrumb.Item key={`item_${index}`}>{item.value}</Breadcrumb.Item>)
list.map((item, index) => <Breadcrumb.Item style={{ overflow: 'visible' }} key={`item_${index}`}>{item.value}</Breadcrumb.Item>)
}
</Breadcrumb>
);
Expand Down

0 comments on commit 9c65a89

Please sign in to comment.