Skip to content

Commit

Permalink
fix(react-table): Some props of IRow should not required (#2196)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunyan authored and redallen committed Jun 10, 2019
1 parent 2cbdfb8 commit 343f928
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ export interface IRowCell {

export interface IRow {
cells: Array<ReactNode | IRowCell>;
isOpen: Boolean;
parent: Number;
props: any;
isOpen?: Boolean;
parent?: Number;
props?: any;
fullWidth?: Boolean;
noPadding?: Boolean;
}
Expand Down

0 comments on commit 343f928

Please sign in to comment.