Skip to content

Commit

Permalink
ListItemMetaProps's description and title should be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Dec 5, 2017
1 parent e27061e commit 1b2a955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/list/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ export interface ListItemMetaProps {
avatar?: React.ReactNode;
className?: string;
children?: React.ReactNode;
description: React.ReactNode;
description?: React.ReactNode;
prefixCls?: string;
style?: React.CSSProperties;
title: React.ReactNode;
title?: React.ReactNode;
}

export const Meta = (props: ListItemMetaProps) => {
Expand Down

0 comments on commit 1b2a955

Please sign in to comment.