From d1b02d803186e985ce8a03321bd7bcf749df4c0a Mon Sep 17 00:00:00 2001 From: Gabriel Aumala Date: Wed, 19 Jul 2017 23:56:49 -0500 Subject: [PATCH 1/2] [Table] Don't set height to tbody fixes #5721. Since the height of the table component is already set elsewhere it is no longer necessary to set it the tbody tag. --- src/Table/Table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Table/Table.js b/src/Table/Table.js index 36688cf94cb690..6910863570fb24 100644 --- a/src/Table/Table.js +++ b/src/Table/Table.js @@ -186,7 +186,7 @@ class Table extends Component { onRowHoverExit: this.onRowHoverExit, onRowSelection: this.onRowSelection, selectable: this.props.selectable, - style: Object.assign({height: this.props.height}, base.props.style), + style: Object.assign({}, base.props.style), } ); } From b479e11785122429bf71bf14a3d34dfc4a5da64b Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Thu, 20 Jul 2017 20:07:01 +0200 Subject: [PATCH 2/2] Update Table.js --- src/Table/Table.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Table/Table.js b/src/Table/Table.js index 6910863570fb24..cee47951a130f7 100644 --- a/src/Table/Table.js +++ b/src/Table/Table.js @@ -186,7 +186,6 @@ class Table extends Component { onRowHoverExit: this.onRowHoverExit, onRowSelection: this.onRowSelection, selectable: this.props.selectable, - style: Object.assign({}, base.props.style), } ); }