Added missing check in List component for if items exist
• Added: - missing check in List component for if items exist
This commit is contained in:
parent
1899ddfbfb
commit
d01f610da3
|
@ -36,6 +36,7 @@ class List extends ImmutablePureComponent {
|
|||
placeholderCount={12}
|
||||
>
|
||||
{
|
||||
!!items && itemsSize > 0 &&
|
||||
items.map((item, i) => (
|
||||
<ListItem
|
||||
size={size}
|
||||
|
|
Loading…
Reference in New Issue